如何在任何浏览器中打开文件内容结果而不出现窗口提示
我有来自控制器操作方法的文件内容结果,如图所示,内容是 byte[] 类型
FileContentResult file= new FileContentResult(contents, "/PDF");
Response.AppendHeader("Content-Disposition", "inline; filename=" + filename);
return file;
现在,如果文件类型已知为 pdf 并指定,为什么不直接在 adobe reader 中打开并提示窗口使用 /saveas 打开。如果我的文件内容结果通过 pdf,我希望它在没有窗口提示的情况下打开。怎么办呢?另外上面的代码在mozilla中只提示窗口,在IE中没有提示或打开。
I have filecontentresult from controller action method as shown ,contents is byte[] type
FileContentResult file= new FileContentResult(contents, "/PDF");
Response.AppendHeader("Content-Disposition", "inline; filename=" + filename);
return file;
Now, if the file type is known as pdf and specified, why is not directly opening in adobe reader and prompting window to openwith /saveas. If my filecontentresult passes pdf I want it to open without window propmt. how can it be done? Also the above code only prompting window in mozilla, In IE no prompt or opening.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
诀窍在于内容类型,你已经将其设置好了。如果浏览器知道如何处理该内容类型,它将打开它:
The trick is in content type, you've set it worng. If browser knows how to handle that content type it will open it:
答案就在一行里。
返回新的 FileContentResult(documentModel.DocumentData, documentModel.DocumentMediaType);
将其放在上下文中是 DocumentSave...
The answer in one line.
return new FileContentResult(documentModel.DocumentData, documentModel.DocumentMediaType);
And to put it into context here is the DocumentSave...