I am doing work for a client who forces compatibility mode on all intranet sites. I was wondering if there is a tag I can put into my HTML that forces compatibility mode off.
|
From the linked MSDN page:
However, "edge" mode is not encouraged in production use:
I honestly don't entirely understand why. But according to this, the best way to go at the moment is using |
|||||||||||||||
|
|
After many hours troubleshooting this stuff... Here are some quick highlights that helped us from the Using
|
|||
|
|
|
I believe this will do the trick:
|
|||
|
|
|
IE8 defaults to standards mode for the intERnet and quirks mode for the intRAnet. The HTML meta tag is ignored if you have the doctype set to xhtml transitional. The solution is to add an HTTP header in code. This worked for us. Now our intranet site is forcing IE8 to render the app in standards mode. Added to PageInit of the base page class (ASP.net C#): Response.AddHeader("X-UA-Compatible", "IE=EmulateIE8"); reference: http://ilia.ws/archives/196-IE8-X-UA-Compatible-Rant.html |
|||
|
|
|
If you're working with a page in the Intranet Zone, you may find that IE9 no matter what you do, is going into IE7 Compat mode. This is due to the setting within IE Compatibility settings which says that all Intranet sites should run in compatibility mode. You can untick this via a group policy (or just plain unticking it in IE), or you can set the following:
This works (as detailed in other answers), but may not initially appear so: it needs to come before the stylesheets are declared. If you don't, it is ignored. |
|||
|
|
|
The meta tag solution wasn't working for us but setting it in the response header did:
|
|||
|
|
Just a few more notes on this topic based on my recent experiences. The university I work for issues laptops with IE 8 set to compatibility mode for all Intranet Sites. I tried adding the meta tag to disable this mode for pages being served up by my site but IE consistently ignored this tag. As Lance mentioned in his post, adding a response header fixed this issue. This is how I set the header based on the HTML5 boilerplate method:
In order for this header to actually be sent, you have to make sure you have mod_headers turned on in Apache. If you want to make sure you have this mod turned on, put this in a page that can run php:
|
|||
|
|