在 asp.net 中将额外的内容添加到导出的 Excel 工作表中
我正在将 gridview 中选定的项目导出到 Excel。现在,导出的 Excel 应包含类似“Excel 下载日期:TODAY_DATE”的内容(其中 TODAY_DATE 是今天的日期,格式为 mm/dd/yyyy)。
我的问题:如何在导出的 Excel 中附加文本(如上所述)?
谢谢!
I am exporting the selected items in gridview to excel. Now the exported excel should contain something like "Excel downloaded on: TODAY_DATE" (where TODAY_DATE is today's date in mm/dd/yyyy format).
My Question: How can i append the text (as mentioned above) in the exported excel?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
同样可以通过 html.writer("Content Comes here!") 完成。
仅当从 HTML 生成 Excel 工作表时,上述解决方案才有效。
The same can be done through html.writer("Content Comes here!").
The above solution is valid only if an excel sheet is generated from HTML.