是否可以将 SSRS 报告与 Web 表单集成
是否可以将 SSRS 报告集成到 Web 表单中……一个示例就足以让我继续前进。
Is it possible to integrate SSRS reports to the webforms..an example will be enough to keep me moving.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
绝对是这样。
您正在寻找的是位于 Microsoft.Reporting.WebForms 程序集中的 ReportViewer 控件。 它将允许您在 Web 表单上放置一个控件,为人们提供一个用于设置报告参数和获取报告的界面。
或者,您可以自行设置所有参数并以您需要的任何格式输出报告。 我们在应用程序中使用它来输出 PDF。
例如 - 这就是我们如何为一份报告设置一个报表查看器对象并获取 PDF,然后将其发送回用户。 特定的代码块是一个网络处理程序。
Absolutely it is.
What you are looking for is the ReportViewer control, located in the Microsoft.Reporting.WebForms assembly. It will allow you to place a control right on your web form that will give people an interface for setting report parameters and getting the report.
Alternatively you can set all the parameters yourself and output the report in whatever format you need. We use it in our application to output PDF.
For instance - this is how we setup a reportviewer object for one of our reports and get the PDF, and then send it back to the user. The particular code block is a web handler.
这是一篇知识库文章,描述如何以特定文件格式将报表输出呈现到 aspx 页面。
http://support.microsoft.com/kb/875447/en-us
this is a knowledge base article which describes how to render report output to an aspx page in a particular file format.
http://support.microsoft.com/kb/875447/en-us
请注意,如果不使用 URL 访问方法,您将失去一些功能,例如参数选择内容。
http://msdn.microsoft.com/en-us/library/ms155089。 ASPX
Be warned that you will lose some functionality such as the parameter selection stuff when you do not use the URL Access method.
http://msdn.microsoft.com/en-us/library/ms155089.aspx