将客户端将IE9强制为IE7

有时候由于浏览器的问题我们在IE7中开发的东西需要在IE9中展示

但是会出现兼容性的问题。

那么我们可以同技巧将用户端的浏览器强行以IE7的文档模式展示我们的网页

 

下面是针对iis asp.net程序来说的!

1.在每个需要加的页面中添加

<head runat="server" id="Head1">     <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />     <title>         <%= ConfigurationSettings.AppSettings["SystemTitle"]%>     </title>

 

但是你想页面一多的情况下 那就蛋疼了。

直接在iss中配置

 

web.cinfig中也需要配置

 

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

posted @ 2013-07-14 10:31  周文  阅读(277)  评论(0编辑  收藏  举报