gpt4 book ai didi

c# - .NET 在下载时提示另存为对话框

转载 作者:太空宇宙 更新时间:2023-11-03 14:52:05 24 4
gpt4 key购买 nike

我正在尝试以下操作,如此处所示:

       System.Web.HttpResponse response = System.Web.HttpContext.Current.Response;

response.ClearContent();
response.Clear();
response.ContentType = "video/mp4";
response.AddHeader("Content-Type", "video/mp4");
response.AddHeader("Content-Disposition", "attachment; filename=" + filename + "; ");
response.WriteFile(sourcepath + filename);
response.End();

但是没有打开对话框,我不知道它把文件保存在哪里。

谢谢

最佳答案

我认为你有两个选择:

  1. 将内容/类型更改为“application/octet-stream”(如@Xaqron 所说)。
  2. 使用HTML5 download attribute如果您在 HTML 中使用 anchor 标记或类似的东西来重定向到下载。

关于c# - .NET 在下载时提示另存为对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51359273/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com