How do I turn off Compatibility View on the IE WebBrowserControl in a WinForms app?

60,820

Solution 1

There is no way to do this other than configuring the following registry settings:

HKLM\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION

or if it's a 32 bit app on 64 bit Windows:

HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION`

These settings aren't surfaced in the WebBrowser control.

For more information please see:

What IE compatibility mode does the webbrowser control use?

In case the link dies:

You create a DWORD value matching the name of your executable and set this value to one of:

7000: Pages containing standards-based <!DOCTYPE> directives are displayed in IE7 mode.
8000: Pages containing standards-based <!DOCTYPE> directives are displayed in IE8 mode
8888: Pages are always displayed in IE8 mode, regardless of the <!DOCTYPE> directive. (This bypasses the exceptions listed earlier.)
9000: Use IE9 settings!
9999: Force IE9

For example:

enter image description here

From my own experiments with IE9:

  • 9000 - inherits the compatibility mode set in IE9's global compatibility mode setting. i.e.: enter image description here

  • 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:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Version

or if it's a 32 bit app on 64 bit Windows:

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Version

There's also this older article from when IE8 came out which is worth a look:

More IE8 Extensibility Improvements

You can also configure these settings on a per user basis under:

HKCU\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION

Solution 2

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

Solution 3

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.

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

To clarify the steps to change this in the registry edit the key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION

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

Solution 4

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:

Sub compatible()
' --- simple routine to disable compatible view.

    Dim the_url As String
    Dim message As String
    Dim theReplacement As String
    Dim oldMessage As String

    the_url = WebBrowser1.Url.OriginalString

    WebBrowser1.Navigate(the_url)

    message = "<head>" + Chr(13) + Chr(10) + "<meta http-equiv=" + Chr(34) + "X-UA-Compatible" + Chr(34) + "content=" + Chr(34) + "IE=edge" + Chr(34) + " />" + Chr(13) + Chr(10) + "<base href=" + Chr(34) + the_url + Chr(34) + ">"

    oldMessage = WebBrowser1.DocumentText.ToString()

    theReplacement = Replace(oldMessage, "<head>", message)
    WebBrowser1.DocumentText = theReplacement

End Sub

This code adds the two following lines in the webbrowser control:

<meta http-equiv="X-UA-Compatible"content="IE=edge" />
<base href="(url of the web page)">
Share:
60,820
Danny Tuppeny
Author by

Danny Tuppeny

Updated on January 06, 2020

Comments

  • Danny Tuppeny
    Danny Tuppeny over 4 years

    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).