4

そのため、プロジェクトのWebフォームにSSRSレポートビューアWebコントロールがあり、現在は期待どおりに機能しています。

印刷ボタンはIE以外のブラウザーでは自然にレンダリングされないため、ChromeとFirefoxにこのソリューションSSRS印刷ボタンを実装して、これらのブラウザーのユーザーが引き続き印刷できるようにしました。

ただし、私のレポートのいくつかは複数ページのレポートです。レポート全体を一度に表示すると、ユーザーは印刷ボタンを1回クリックするだけで済みます。

コントロールで設定を探しましたが、表示されません。サーバーレポートを使用しているため、RDLを変更してページを「大きく」することはできません。

複数ページのレポート全体を一度に表示するには、他にどのようなアプローチがありますか?

4

1 に答える 1

7

私が正しく理解していれば、インタラクティブサイズですべてのデータを表示したいのですが、通常の印刷出力(SSRSボタンを使用)では適切なページサイズを使用します。

To do this, you can modify the report's InteractiveSize Height property and set it to zero (0in). You can find this on the report's property page (press F4 to see the property page if not displayed). It is not shown in the normal report properties dialog -- only in the Properties Window.

This will make the interactive report page-less and render all the report data in one go. Assuming its not terribly large, this works well for people annoyed by the paging on the interactive report viewer and who just want to scroll through a data list.

于 2012-10-24T14:48:13.750 に答える