跳转到报告服务中的特定页面

R0b*_*n1k 1 reporting-services

我有一个多页报告服务报告,我想从特定页面开始,而不是默认的第一页。

有没有办法做到这一点?

Mic*_*rry 5

http://myrsserver/reportserver?http://portal/reports/sample%20reports/departmental%20sales.rdl&rs:Command=Render&rc:Zoom=Whole%20Page&rc:Parameters=collapsed&rc:DocMap=true&rc : Section=999

其中“Section”参数是您的页码。

在 HTML 查看器中,有许多选项可用于控制报表呈现。这是您可能会发现有用的简短列表:

* rs:Format – Rendering modes you can pass are HTML3.2, HTML4.0, MHTML, IMAGE, EXCEL, WORD, CSV, PDF, XML, defaults to HTML4.0
* rc:Zoom – Specified in percentages, supports Page Width and Whole Page, defaults to 100%
* rc:Toolbar – True/False, used to show/hide the toolbar, defaults to true
* rc:Parameters – True/False/Collapsed, used to show/hide/collapse the parameters in the toolbar, defaults to true
* rc:DocMap – True/False, used to show/hide document map, defaults to true (not shown unless report has document map)
* rc:Section – Specifies default page number to display, defaults to 1
* rc:BookMarkID – Jumps to a specific bookmark in a report
* rc:FindString – Provides search criteria to the report and finds the first instance of the string specified
Run Code Online (Sandbox Code Playgroud)