vote up 8 vote down star
2

Is there a way to force ie8 into ie7 compatibility mode using .net or javascript?

flag

Also, can I accomplish this using IIS settings? – Bryan Jun 18 at 19:37
I guess I could see the value in this for old pages, but PLEASE don't create new pages that depend on IE7... let the beast die. – TM Jul 7 at 13:04
IE8 has bugs that IE7 doesn't have and that go away when switching to compatibility mode: stackoverflow.com/questions/1070178/… My site is affected by that bug, and I'd rather tell IE8 to display it correctly like IE7 and every other browser does by adding one line to my .htaccess file, than to add a browser-specific workaround to my actual pages. – Jan Goyvaerts Jul 23 at 7:44
Adding the X-UA-Compatible header also removes the "compatibility view" button, which looks more professional IMO. The user shouldn't have to figure out which mode is best for your site. It's the webmaster's job to make the site support all major browsers. – Jan Goyvaerts Jul 23 at 7:46

5 Answers

vote up 16 vote down check

If you add this to your meta tags:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

IE8 will render the page like IE7.

link|flag
4  
You're right - but try to add it immediately after the opening <head> tag. I had problems when it was further down the page. – John McCollum Jun 18 at 19:24
What if I don't to add this line to every aspx page on my site. Can I do it with IIS? – Bryan Jun 18 at 19:29
1  
@Bryan: No. This is why we use master pages. – Chris Lively Jun 18 at 19:37
1  
See DDaviesBrackett's answer below for doing it at the site level – Chris Lively Jun 18 at 19:38
vote up 4 vote down

There is an HTTP header you can set that will force IE8 to use IE7-compatibility mode.

link|flag
vote up 2 vote down

I might have found it now. http://blog.lroot.com/articles/the-ie7-compatibility-tag-force-ie8-to-use-the-ie7-rendering-mode/

The site says adding this meta tag:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">

or adding this to .htaccess

Header set X-UA-Compatible IE=EmulateIE7
link|flag
vote up 2 vote down

its even simpler than that. Using HTML you can just add this metatag to your page (first thing on the page):

<meta http-equiv="X-UA-Compatible" content="IE=7" />

If you wanted to do it using.net, you just have to send your http request with that meta information in the header. This would require a page refresh to work though.

Also, you can look at a similar question here: http://stackoverflow.com/questions/934178/compatibility-mode-in-ie8-using-vbscript

link|flag
vote up 0 vote down

A note to this:

IE 8.0s emulation only promises to display the page the same. There are subtle differences that might cause functionality to break. I recently had a problem with just that. Where IE 7.0 uses a javascript wrapper-function called "anonymous()" in IE 8.0 the wrapper was named differently.

So do not expect things like JavaScript to "just work", because you turn on emulation.

link|flag
Writing code that depends on the "name" of an anonymous function is not a reliable dependency to take, regardless of browser version. – EricLaw -MSFT- Jul 14 at 14:58

Your Answer

Get an OpenID
or

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