I have an asp.net site that looks good, as it should be, on IE8, IE9, as well as on the latest versions of Firefox and Chrome.
The server is working fine in all web browsers. in IE10 it does not work. When you click on the IE10 "Compatibility" button, its work is great.
but I can’t tell all users to turn on the compatibility button and browse.
I want to do this in encoding. I have tried
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >
and
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=EmulateIE7" />
</customHeaders>
</httpProtocol>
</system.webServer>
and it also
try also
I tried to override the compatibility mode, but it did not help:
but it does not work in IE10.
source
share