Compatibility Issue - IE10

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.

+5
source share
3 answers

it works for me

<head runat="server">
<meta id="FirstCtrlID" runat="server" http-equiv="X-UA-Compatible" content="IE=8" />
</head>
0
source

Try

<meta http-equiv="X-UA-Compatible" content="IE=edge">

IE- < meta http-equiv = "X-UA-Compatible" content= ", IE = " > ?

0

Just try this

<meta http-equiv="X-UA-Compatible" content="IE=8, IE=9, IE=10, IE=Edge" />

here IE = Edge means highest compatibility. but for your problem IE = 10 will be a fix.

0
source

All Articles