4
我在Web.config文件ASP.NET忽略IE7兼容模式標籤在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 App - Set IE7-Compatibility Mode?的建議,但它似乎沒有按照預期使用IE8和IIS6。任何提示?
難道你不能只是將它添加到母版頁的
部分,而不是將其添加到代碼? – codeulike 2011-10-20 17:41:53