SSRS 和 Sharepoint

发布于 2024-11-30 22:39:14 字数 195 浏览 2 评论 0原文

我正在 Sharepoint 2007 和 SSRS 2008 中进行开发。我对这两种技术都很陌生。我想做的是在 SSRS 中创建一个报表,并使用报表查看器 Web 部件将其显示在我的 Sharepoint 网站中。但我对从另一个实现 (IWebPartField) 的 Web 部件向我的报告传递参数感到震惊。

请帮帮我。

亲切的问候 维韦克

Well I am doing development in Sharepoint 2007 and SSRS 2008. I am pretty new to both of the technologies. What I am trying to do is I have created a report in SSRS and using Report Viewer Web Part to show it in my Sharepoint Web site. But I am strucked with passing parameter to my report from another web part that implements (IWebPartField).

Please help me out.

Kind Regards
Vivek

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黑白记忆 2024-12-07 22:39:14

将用户输入存储在变量中,并将输入作为查询字符串传递到报告。您可以创建一个“运行报告按钮”,将报告查看器 Web 部件 URL 设置为指向您的报告并使用 ReportURL 中的用户输入,SSRS 将检测参数:

ReportViewerWebPart.ReportURL = "http://yoursharepointwebsite/Reports/YourReport.aspx?Id=1&ReportParam1=UserInputField&ReportParam2=UserInputField2

Store the User Input in a variable and pass the input to the report as Query String. You could create a "Run Report Button" which sets the Report Viewer Web Part URL to point at your Report and use the user input in the ReportURL and SSRS will detect the parameters:

I.e.

ReportViewerWebPart.ReportURL = "http://yoursharepointwebsite/Reports/YourReport.aspx?Id=1&ReportParam1=UserInputField&ReportParam2=UserInputField2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文