- X-UA-compatible meta tag
<head>
<meta http-equiv="x-ua-compatible" content="IE=5">
</head>
- X-UA-Compatible HTTP header
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-UA-Compatible" value="IE=5" />
</customHeaders>
</httpProtocol>
</system.webServer>
Or is set in the C# code:
HttpContext.Current.Response.Headers.Set("X-UA-Compatible", "IE=5");
- The website is added into the Compatibility View Settings of the IE browser
- Microsoft Compatibility List
To get a latest Microsoft Compatibility List, visit https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/compatibility/gg622935(v=vs.85)#updating-the-cv-list
- Intranet website
To add or check if the website has been added into intranet, go to Internet Options|Security. Click the Sites button, then click the Advance button.
No comments:
Post a Comment