在 ReportViewer 中修改导出到 Excel
我在 ReportViewer 中有一个格式化的表格。当我想导出到 Excel 时 - 我不想导出格式化的表 - 相反,我想在 Excel 文件中输出原始/原始/未处理的数据表。
拦截导出到 Excel 功能并以不同格式输出数据的最佳方法是什么?
I have a formatted table in ReportViewer. When I want to export to Excel though - I do not want to export the formatted table - instead I want to output the original/raw/unmassaged data table in an excel file.
What's the best way to intercept the Export to Excel function and output data in a different format?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 ReportViewer 中的
ShowExportButton
设置为False
,然后在页面中添加一个执行此操作的新按钮。或者,您可以进入
ReportExport
事件,将 Cancel 设置为True
,然后触发您的自定义方法。Put the
ShowExportButton
toFalse
in the ReportViewer and add a new button in your page that do the work.Or you can get into the
ReportExport
event, set the Cancel toTrue
, and the fire your custom method.