将带有图像的 Gridview 导出到 Excel - 问题
我的 ASP.NET C# 页面中有一个 Gridview。 它有几列和一个图像列。 我可以将整个列导出到 Excel 文件,但图像列为空。 顺便说一下,我使用的是完整路径。
任何想法?
I have a Gridview in my ASP.NET C# Page. It has a couple of columns and also one image column. I can export the entire columns to an Excel file, but the image column is blank. By the way, I use the full path.
Any Idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 default.aspx 中是(对于本地导出)
或(对于远程导出)
Yes in default.aspx (For local Export)
or (For remote Export)
Response.Clear(); //这会清除任何标头或先前输出的响应
响应.Buffer = true; //确保整个输出同时渲染
Response.Clear(); //this clears the Response of any headers or previous output
Response.Buffer = true; //make sure that the entire output is rendered simultaneously