In my WinForms app, if I use a WebBrowser control, it seems to be forced into compatibility mode. How can I disable this, and make it behave the same as standalone IE does on my machine when browsing the same site?
- I do not want to make registry changes. I want everything to be contained within my app.
- The website I'm loading is not mine, so I do not have the ability to make changes to it (unless they can be done programmatically from within my app).
Although it's not what you asked, if you own the site you can add the following into the head section of the html.:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />
See: http://msdn.microsoft.com/en-us/library/cc288325(v=vs.85).aspx
Here is the skinny of the problem: If a user enables Compatibility View in IE8 then it will override all page directives. So any page or server variable you attempt to use will fail to prevent IE from switching to Compatibility View if the user has turned on this feature in IE. Most people think page directives or some kind of secret header server variable will fix the site. Nope. None of these solutions work if the setting has been manually overridden. I know, it is just not cool. So the following will work only if the user has not enabled the compatibility view feature.
To clarify the steps to change this in the registry edit the key:
Then add a new DWORD called iexplore.exe. To do this right-click the key and select New > DWORD. Give that DWORD the decimal value of 9999. This will make all sites render without compatibility view. To enable Compatibility View again delete this DWORD. Also if you wish to automate this change and run a batch script on your system check out Michal M's script.
https://gist.github.com/michal-m/1853315
I know that this is an old question but there's a way to insert a header in the webbrowser control in Visual Basic 2010 and later in order to disable the compatibility view:
The first thing you need to do is to catch the current web page and then replace the head tag as follows:
This code adds the two following lines in the webbrowser control:
There is no way to do this other than configuring the following registry settings:
or if it's a 32 bit app on 64 bit Windows:
These settings aren't surfaced in the
WebBrowser
control.For more information please see:
In case the link dies:
You create a
DWORD
value matching the name of your executable and set this value to one of:For example:
From my own experiments with IE9:
9000 - inherits the compatibility mode set in IE9's global compatibility mode setting. i.e.:
9999 - forces IE9 out of compatibility mode in the host application regardless of the globally configured compatibility mode setting
Your application would probably need to detect which underlying IE version is available to determine which value to use:
or if it's a 32 bit app on 64 bit Windows:
There's also this older article from when IE8 came out which is worth a look:
You can also configure these settings on a per user basis under: