Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 csv 文件作为收件箱的附件。
当他们单击链接时,他们应该能够查看附件,但是如何向他们显示 csv 附件??!浏览器只是解析它并显示内容,而不是弹出打开/保存窗口。
以前有人必须在网络上打开一个 csv 文件作为附件吗?谢谢。
Response.AddHeader "content-disposition","attachment; filename=myfile.csv"
将此标头添加到您的响应中将导致浏览器将内容视为附件并显示“文件下载”对话框,而不是尝试在网页中显示内容。