0

我的網站在IE8中正確呈現,當我使用Windows 8.1時,默認瀏覽器是IE11,我們如何強制IE 11以IE 8兼容的方式運行模式。強制IE 11以IE 8兼容模式在ASP.NET中運行

我已經嘗試過其他職位

規定的選項

How to force compatibility mode for all versions of IE?

ASP.NET Project and IE10 Compatibility Mode issues in Windows 7

Why does IE9 switch to compatibility mode on my website?

我在我的根web配置設置像

<httpProtocol> 
     <customHeaders> 
     <remove name="X-UA-Compatible"/> 
     <add name="X-UA-Compatible" value="IE=EmulateIE8"/> 
     </customHeaders> 
    </httpProtocol> 

如果我使用fiddler檢查響應頭文件,它對我說 X-UA兼容:IE = EmulateIE8

但是它仍然沒有正確渲染。

回答