RDLC 将本地报告导出到 CSV
在 Visual Sudio 2010 ASPX ReportViewer 控件中,唯一的导出选项是:Excel、PDF 和 Word。如何将报告导出为 CSV。
我知道 SSRS 报告可以做到这一点,但在我的情况下这是不可能的。
In Visual Sudio 2010 ASPX ReportViewer Control the only export options are: Excel, PDF, and Word. How can I export the report to CSV.
I understand that SSRS reports can do this, but in my situation this is not a possibility.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以控制数据源,则可以将数据集转换为 CSV 并向用户显示下载链接。
您还可以使用 jQuery 在报告查看器导出下拉列表中添加选项 CSV,并在选择操作时调用导出为 CSV。
通过这种方式,您可以“覆盖”仅适用于 CSV 文件格式的报告查看器。
If you have control over the data source you can transform the DataSet into CSV and show a link to the user for the download.
You can also add the option CSV on the report viewer export dropdown using jQuery and call the export to CSV when the action is selected.
In this way you "override" the report viewer only for the CSV file format.