将页面上的多个网格视图导出到 ASP.Net 中单个 Excel 文件的多个工作表
我知道有很多技术可以将网格视图导出到 Excel。以下是一些:-
- HTML 呈现到 HTMLTextWriter 并以 Excel 形式发送响应内容类型。
- 使用 XML 技术并生成 XML 字符串作为 Excel 表。
- 使用 Office Interop dll 为 Excel 文档创建对象并对其进行相应的处理。
现在的要求是,我在一个aspx页面上有多个网格视图,并且这些网格视图是从不同的数据源加载的。我有导出按钮,它必须将每个网格视图导出到单个 Excel 文件的单独工作表中。
这可以使用上面提到的第二种和第三种技术来完成。想知道使用第一种技术的可能性,即使用 HTMLTextWriter
I know that there a quite a few techniques to export grid view to excel. Below are a few:-
- HTML Rendering to HTMLTextWriter and Sending the Response Content Type as Excel.
- Using XML technique and generating the XML String as Excel Sheets.
- Using Office Interop dlls to create an object for excel document and work on it accordingly.
Now the requirement is, I have multiple Grid Views on a aspx page and these Grid views are loaded from different data sources. I have Export button, which have to export each grid view to separate work-sheet of a single excel file.
This can be done using second and third techniques mentioned above. Want to know the possibility of using the first technique i.e. using HTMLTextWriter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
Open XML
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=5124
http://openxmldeveloper.org/
You can do using
Open XML
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=5124
http://openxmldeveloper.org/