C# 如何在服务器上强制下载文本文件的对话框?

C# 如何在服务器上强制下载文本文件的对话框?,c#,asp.net,dialog,download,C#,Asp.net,Dialog,Download,如何在服务器上强制下载文本文件的对话框 当我使用blow代码时,对话框窗口是针对aspx文件的。。。(为什么?) 如何解决此问题?您应该随文件一起发送强制下载标题。我不知道你将如何在ASP中做到这一点,但基本上你必须阅读一些ASP内置函数的文件,然后将其输出到浏览器 Content-Type: application/force-download; Content-Disposition: attachment; filename=\yourfile.txt 根据您的代码判断: Respons

如何在服务器上强制下载文本文件的对话框

当我使用blow代码时,对话框窗口是针对aspx文件的。。。(为什么?)


如何解决此问题?

您应该随文件一起发送强制下载标题。我不知道你将如何在ASP中做到这一点,但基本上你必须阅读一些ASP内置函数的文件,然后将其输出到浏览器

Content-Type: application/force-download;
Content-Disposition: attachment; filename=\yourfile.txt
根据您的代码判断:

Response.AppendHeader("Content-Type", "application/force-download;");
Response.AppendHeader("Content-Disposition", "attachment; filename="+ Name);
干杯

Response.AppendHeader("Content-Type", "application/force-download;");
Response.AppendHeader("Content-Disposition", "attachment; filename="+ Name);