Excel 的文件下载弹出窗口

发布于 2024-10-20 11:26:03 字数 202 浏览 1 评论 0原文

你好 我编写了一个名为“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初心未许 2024-10-27 11:26:03

我们在 Java 中执行此操作,但它也应该与 ASP.NET 类似地工作

设置“Content-Disposition”标头应该有所帮助,如果不起作用,还可以尝试将内容类型设置为“application/unknown”

Java 代码:

response.setHeader( "Content-Disposition", "attachment; filename=\"" + fileName + "\"" );

// If it doesn't work with the line above, add also this one
response.setContentType( "application/unknown" );

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:

response.setHeader( "Content-Disposition", "attachment; filename=\"" + fileName + "\"" );

// If it doesn't work with the line above, add also this one
response.setContentType( "application/unknown" );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文