[VB][C#] 使網站開啟相容性檢視方法

摘要:[VB][C#] 使網站開啟相容性檢視方法

範例


Web.Config全域設定網站相容性 


<configuration>
     <system.webserver>
           <httpprotocol> 
               <customheaders> 
                    <clear> 
                         <add name="X-UA-Compatible" value="IE=EmulateIE7" /> 
                    </clear>
               </customheaders> 
           </httpprotocol> 
     </system.webserver> 
</configuration>

 

單頁指定使用相容性檢視


<html>
     <head>
          <!-- Use IE7 mode -->
          <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
          <title>My Web Page</title>
     </head>
     <body>
          <p>Content goes here.</p>
     </body>
 </html>

 

參考資料


http://support.microsoft.com/kb/968499/zh-tw

 

 


以上文章敘述如有錯誤及觀念不正確,請不吝嗇指教
如有侵權內容也請您與我反應~謝謝您 :)