创建网页以检索 SSRS
我在 sql server 2008 r2 中使用 SSRS 创建了一个报告,现在我想创建一个前端网页来根据用户的选择检索报告。例如:向用户提供从开始到结束日期的报告。
I created a report using SSRS in sql server 2008 r2,and now i want to create a front end webpage to retrieve the reports depending on the users choice..eg: Giving the user the reports from start to end date..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您尝试在 ASP.NET 中显示它,则需要使用 ReportViewer 控件。
http://msdn.microsoft.com/en -us/library/aa179197%28v=SQL.80%29.aspx
Assuming that you are trying to show it in ASP.NET, you need to use the ReportViewer Control.
http://msdn.microsoft.com/en-us/library/aa179197%28v=SQL.80%29.aspx
提供自定义 UI 以获取参数值参数,然后通过使用 rc: 命令传递参数来在内嵌框架中加载报告,并根据需要禁用工具栏
请参阅以下内容:使用 URL 访问参数
Provide a custom UI to take in the parameter values parameter and then load the report in an inline frame by passing the parameters using the rc: commands and disable the toolbars if wanted
refer the following : Using URL Access Parameters