浏览器模式 兼容性修改

<configuration>

<system.webServer>



  <httpProtocol>

      <customHeaders>

        <clear/>

        <add name="X-UA-Compatible" value="IE=EmulateIE7"/>

      </customHeaders>

    </httpProtocol>



  </system.webServer>

</configuration>
IE8兼容性视图


IE兼容性修改,如上代码可以解决网站在不同版本的IE中兼容性问题,直接加到对应的web.config中。

你可能感兴趣的:(浏览器)