查找新添加的扩展的 MIME 类型
如此处所示,可以从 HKEY_Classes_Root 获取“默认”IIS mime 类型。 但是,当我注册一个新类型时,我找不到该条目 - 有谁知道我如何以编程方式读取所有 IIS 注册的 mime 类型?
as shown here its possible to get the "default" IIS mime types from HKEY_Classes_Root.
However when I register a new type I cannot find the entry - does anyone know how I get read all IIS registered mime types progamatically ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很抱歉回答我自己的问题,但答案发布在此处< /a> (如下所示)解决了 IIS 6 和 IIS 6 的问题。 7
Sorry to answer my own question but the answer posted here (shown below) resolves this for both IIS 6 & 7
您可能需要将其添加到 IIS 中。
http://technet.microsoft.com/en-us /library/cc725608(WS.10).aspx
更新
您可以尝试 DirectoryServices API:
我可以在 .NET 中设置 IIS MIME 类型吗?< /a>
You may have to add it in IIS.
http://technet.microsoft.com/en-us/library/cc725608(WS.10).aspx
Update
You could try the DirectoryServices API:
Can I setup an IIS MIME type in .NET?