使用文件操作方法时如何在 ASP.NET MVC 中获取文件的 ContentType
尝试使用asp.net mvc的文件操作结果。
因此,我似乎必须为要发送到浏览器的文件指定 ContentType。目前,在我的应用程序中可以发送到浏览器的文件类型没有真正的限制,因此我不能总是假设它是“text/pdf”。
计算文件 ContentType 的最佳方法是什么,或者有没有办法将其设置为“通用”?
越简单越好!
谢谢,
Attempting to use asp.net mvc's Action Result of File.
So it would seem that I have to specify a ContentType for the file to be sent to the browser. Currently there is no real limit to what types of files may be sent to the browser in my application, so I can't always assume it will be a "text/pdf", for example.
What's the best way of working out the ContentType of a file, or is there a way where this can be set to something 'generic'?
The simpler the better!
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用本地计算机的 MIME 类型数据库(来自注册表):
http:// www.codeproject.com/KB/dotnet/ContentType.aspx
或查找备用词典。就像这个重复这样的问题。
You either user the local machine's database of MIME types (from the registery):
http://www.codeproject.com/KB/dotnet/ContentType.aspx
or find an alternate dictionary. Like this duplicate SO question.