3

I installed internet explorer 9 to have it work with the embedded browser control. After I restarted my computer, it still says I am using IE7.

This is with the .NET Framework 3.5

What do I have to change/update to have the latest version of IE work with the browser control?

remio
  • 1,242
  • 2
  • 15
  • 36
John
  • 5,942
  • 3
  • 42
  • 79

2 Answers2

3

From this answer

If you want to take advantage of new IE9 features, you should add the meta tag <meta http-equiv="X-UA-Compatible" content="IE=9" > to the HTML page you're showing.

OR

HKLM > SOFTWARE > Microsoft > Internet Explorer > Main > FeatureControl > FEATURE_BROWSER_EMULATION

And in there add 'myApplicationName.exe' with value '9000'

Community
  • 1
  • 1
Steven P
  • 1,956
  • 1
  • 16
  • 17
  • +1. And [this thread](http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/2ed65b9d-c601-4ca8-bde1-64584fc87515/) and [this article](http://www.west-wind.com/weblog/posts/2011/May/21/Web-Browser-Control-Specifying-the-IE-Version). – ih8ie8 Oct 21 '12 at 04:26
-1

This can be caused by the Compatibility view.

Check your IE9 config on your system as well as in your winform.

remio
  • 1,242
  • 2
  • 15
  • 36
  • 2
    Compatibility view doesnt change the user agent and is not on by default. Everything works fine in the standalone IE. – John Feb 28 '12 at 21:17