gpt4 book ai didi

asp.net-mvc - ASP.NET MVC FileContentResult 自定义下载对话框?

转载 作者:行者123 更新时间:2023-12-01 23:11:02 31 4
gpt4 key购买 nike

我使用 FileContentResult 将系统生成的 PDF 的字节数组返回给用户以供查看或下载。这非常有效。

public FileContentResult ViewReport()
{
HttpContext.Response.AddHeader("content-disposition", "attachment; filename=" + myFileName);

return File(myByteArray, "application/pdf");
}

我想知道的是 - 是否可以在下载对话框中隐藏源代码?

即隐藏或删除对话框中的“from”行,

http://i1216.photobucket.com/albums/dd364/nolana22/Download_Dialogue.png

最佳答案

此对话框是特定于浏览器的,您无法从网站进行控制。唯一可自定义的是 Content-Disposition HTTP header ,您可以通过它下载文件或内联打开文件。

关于asp.net-mvc - ASP.NET MVC FileContentResult 自定义下载对话框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4068913/

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