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兼容模式

 

相关文章:

  • 2022-02-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2022-01-06
  • 2021-12-24
猜你喜欢
  • 2021-11-20
  • 2021-07-21
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
  • 2021-06-26
  • 2022-12-23
相关资源
相似解决方案