Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a domain-controlled environment I'm finding that the compatibility mode is triggered on certain clients (winXP/Win7, IE8/IE9) even when we are providing a X-UA tags, a !DOCTYPE definition and "IE=Edge" response headers. These clients have the "display intranet sites in compatibility view" checkbox ticked. Which is precisely what I'm trying to override.

The following is the documentation that I've used to try understand how IE decides to actually trigger the compatibility mode.

http://msdn.microsoft.com/en-us/library/ff406036%28v=VS.85%29.aspx

http://blogs.msdn.com/b/ie/archive/2009/02/16/just-the-facts-recap-of-compatibility-view.aspx

Site owners are always in control of their content. Site owners can choose to use the X-UA-Compatible tag to be absolutely declarative about how they’d like their site to display and to map Standards mode pages to IE7 Standards. Use of the X-UA-Compatible tag overrides Compatibility View on the client.

Google for "Defining Document Compatibility", sadly the SPAM engine doesn't let me post more than 2 urls.

This is an ASP .NET web app and includes the following definitions on the master page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
   <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
</head>

and web.config

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

I've used Fiddler to check that the header is indeed being injected correctly.

My understanding is that with these settings I should be able override the "Display intranet sites in Compatibility View" browser setting. But depending on the client I've found that some of them will still trigger compatibility mode. It also seems to be down to the machine level rather a policy group setting, since I obtain different results even when I use with the same set of credentials on different clients.

Disabling the Compatibility View Settings checkbox does the trick. But the actual purpose is to make sure that the app is rendered exactly the same way regardless of the client settings.

Any thoughts and what I could be possibly missing? Is it possible at all to force IE to always render the pages without triggering Compat mode?

thanks a million,

Jaume

PS: the site is currently in development and is of course not in Microsoft's compatibility list, but I've also checked just in case.

Google for "Understanding the Compatibility View List", sadly the SPAM engine doesn't let me post more than 2 urls.

share|improve this question

2 Answers

Maybe this url can help you: Activating Browser Modes with Doctype

Edit: Today we were able to override the compatibility view with: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />

share|improve this answer
@Balanivash That was a really good read actually, thanks for the link. The article leads me to believe the "Compatibility Mode" is being enabled because the site is located within the intranet zone. However, this is not occurring consistently, for instance: - win7, IE8, on a client -> full standards mode - win7, IE8, on a different box with the same credentials -> compat mode To be on the safe-side I'm also starting new sessions of the browser and resetting the IE developer toolbar to default values on every test. – JSancho Jul 1 '11 at 12:58
Maybe you can try this: <meta http-equiv="X-UA-Compatible" content="IE=8" /> – Andrew Flierman Jul 1 '11 at 13:10
1  
Also: If you want your web application to tell IE8 to really trust you, you need to send X-UA-Compatible as an HTTP header from your web server instead of meta tag: social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/… – Andrew Flierman Jul 1 '11 at 13:19
The site uses css3 if the client is capable and the IE=Edge setting is working as far as switching to IE9 or IE8 standards depending on the client. It's the "compatibility mode" that it's bothering me. And the HTTP header is actually in. That's set with the web.config options above and Fiddler does pick it the header response. – JSancho Jul 1 '11 at 14:03
1  
Actually today we were able to override the compatibility view with: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" /> – Andrew Flierman Nov 24 '11 at 10:09
show 2 more comments

Changing my header to the following solve the problem:

<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.