5

我有一个在 IE8、IE9 以及最新版本的 Firefox 和 Chrome 上看起来不错的 asp.net 网站。

服务器点击在所有网络浏览器中都可以正常工作..在 IE10 中它不工作..当点击 IE10 的“兼容性按钮”时它工作正常..

但我不能告诉所有用户打开兼容性按钮并浏览。

我想在编码方面做dis ..我试过了 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >

<system.webServer>
    <httpProtocol>
        <customHeaders>
            <clear />
            <add name="X-UA-Compatible" value="IE=EmulateIE7" />
        </customHeaders>
    </httpProtocol>
</system.webServer>

这也是

也试试dis

我试过覆盖兼容模式,但无济于事:

但它在 IE10 中不起作用。

4

3 回答 3

0

试试这个

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

这里 IE=Edge 意味着最高的兼容性。但是对于您的问题 IE=10 将是解决方法。

于 2015-02-10T12:19:49.567 回答
0

这对我有用

<head runat="server">
<meta id="FirstCtrlID" runat="server" http-equiv="X-UA-Compatible" content="IE=8" />
</head>
于 2013-03-19T20:08:15.803 回答
0

尝试

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

IE 兼容性元标记已在对以下问题的回答中对此答案进行了详细描述。<meta http-equiv="X-UA-Compatible" content="IE=edge"> 是做什么的?

于 2013-09-09T17:29:33.217 回答