Click here to Skip to main content
15,893,337 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
How to avoid compatibility issue of  IE 11 with IIS 7.5? IE 11 version is used in both servers(IIS 6 and IIS 7). We are using user controls as header and footer of website instead of master page. Using VS 2005 and Sql 2008.

In web.config we added this in and worked with IIS 6 and IE 11.


<configuration>
  <system.webserver>
    <httpprotocol>
      <customheaders>
        <clear />
       <add name="X-UA-Compatible" value="IE=EmulateIE7" />

      </customheaders>
    </httpprotocol>
  </system.webserver>
</configuration>


But in IIS 7 and with IE 11 compatibility issue is  there the above code in web.config isn't working.
 <add name="X-UA-Compatible" value="IE=11" />
The above isn't working for IIS 7.5 with IE version 11.
Posted
Updated 22-Dec-13 19:29pm
v2
Comments
André Kraak 24-Dec-13 8:58am    
Please do not repost questions, this is a copy from http://www.codeproject.com/Questions/699100/How-to-avoid-compatibility-issue-of-IE-11-with-IIS.
Please remove this question.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900