在没有 SSRS 的情况下处理 rdl/rdlc 报告文件?
有没有办法在批处理过程中渲染和导出 rdl 文件而不使用 SSRS?
我不想要 SSRS(IIS + 数据库)的开销,而是想在我自己的批处理/调度服务中处理这个问题。
谢谢
Is there any way to render and export an rdl file within a batch process without using SSRS?
I don't want the overhead of SSRS (IIS + database) and instead want to handle this within my own batch/scheduling service.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以想象在以下位置使用报表查看器控件用托管代码编写的服务器进程。 您向控件传递一个数据源(可以是 DataTable 内存对象),它将返回一个字节流,您可以将其定向到文件中。
该控件有一个 UI,但可以绕过它。
You can conceivably use the Report Viewer control in a server process written in managed code. You pass the control a data source (which can be a DataTable memory object), and it will return a byte stream that you can direct into a file.
The control has a UI, but that can be by-passed.