Excel 的文件下载弹出窗口
你好 我编写了一个名为“ExportDataTableToExcel(dataTable)
”的过程,它接受数据表并将所有数据显示到 Excel 工作表中。但是,在显示 Excel 工作表之前,它不会显示带有打开/保存/取消
选项的“文件下载”弹出窗口。
任何有关所需代码的帮助将不胜感激。我正在使用 ASP.NET 应用程序。 谢谢
Hi
I have written a procedure called 'ExportDataTableToExcel(dataTable)
', which accepts a data table and displays all data into an excel worksheet. However, it doesn't display the 'File Download' pop-up window with Open/Save/Cancel
options before displaying the excel worksheet.
Any help with required code will be much appreciated. I am using ASP.NET
application.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们在 Java 中执行此操作,但它也应该与 ASP.NET 类似地工作
设置“Content-Disposition”标头应该有所帮助,如果不起作用,还可以尝试将内容类型设置为“application/unknown”
Java 代码:
we do it in Java, but it should work similarly also with ASP.NET
Setting the "Content-Disposition" header should help, if not working try also to set the content type as "application/unknown"
Java Code: