Is there a way to force ie8 into ie7 compatibility mode using .net or javascript?
|
2
|
|||||||||
|
|
|
If you add this to your meta tags:
IE8 will render the page like IE7. |
||||||||||||||
|
|
|
There is an HTTP header you can set that will force IE8 to use IE7-compatibility mode. |
||
|
|
|
|
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:
or adding this to .htaccess
|
||
|
|
|
|
its even simpler than that. Using HTML you can just add this metatag to your page (first thing on the page):
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 |
||
|
|
|
|
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. |
||
|
