Asp.Net 启用全局IE兼容模式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Asp.Net 启用全局IE兼容模式相关的知识,希望对你有一定的参考价值。
Asp.Net 启用全局IE兼容模式,不失为一个种简单最有效的解决方案:
<system.webServer> <!-- 配置全局兼容 --> <httpProtocol> <customHeaders> <clear /> <add name="X-UA-Compatible" value="IE=5" /> </customHeaders> </httpProtocol> <system.webServer>
在Fiddler查看Header请求中能找到它,已经顺利打开兼容模式:
以上是关于Asp.Net 启用全局IE兼容模式的主要内容,如果未能解决你的问题,请参考以下文章