列值自定义 - 在 ASP.NET 中导出 Excel
我必须将gridview导出到excel工作表2003中。使用我的代码,我可以将数据直接导出到eXcel工作表中。但是如果该列有空值,那么如何在 Excel 工作表中替换为空字符串。有一个日期列为空,在单击导出按钮和将数据加载到 Excel 之间是否发生任何事件处理程序。如果有的话,我可以比较数据库中的值,并可以用空字符串替换空值。在事件处理程序中。
请指出我正确的方向。
谢谢
I have to export gridview in to the excel sheet 2003. With my code I can Export the data into eXcel Sheet directly. But If there is a null value for the column, Then how do I replace with empty string in Excel sheet. There is a date column which is null, is there any event handler that occurs between export button click and the loading the data into excel. If there is one I can compare the values in the database and can replace the null value with empty String. in the evnt handler.
Please point me in right direction.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
单击导出按钮后,您可以遍历网格行并替换您需要的任何内容。例如,下面的代码将用
.
替换:
:On click of the export button, you can iterate through your grid rows and replace whatever you need. For example, the code below will replace
:
with.
: