我在我的Web.config文件中的以下部分
<system.webServer>
<!-- For now..... lets be safe and put IE8 in IE7 compatibility mode-->
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=EmulateIE7" />
</customHeaders>
</httpProtocol>
</system.webServer>
但
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
是不是存在于页的标题的时候都在我的网站呈现。 我跟着这个职位的建议ASP.NET应用程序-将IE7兼容模式? 但它似乎没有工作,当使用IE8和IIS6预期。 任何提示?