Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I recently upgraded to IE9-beta. Now, In my .net(3.5) WinForm application I want to use WebBrowser control. So my question is, whether the webbrowser control will exhibit all properties and functions of IE9? My concern is, I want to render some SVG graphics on it.

Thanks, Omky

share|improve this question
2  
Why not try and find out? – John Saunders Jan 6 '11 at 6:10

6 Answers

up vote 43 down vote accepted

The IE9 "version" of the WebBrowser control, like the IE8 version, is actually several browsers in one. Unlike the IE8 version, you do have a little more control over the rendering mode inside the page by changing the doctype. Of course, to change the browser mode you have to set your registry like the earlier answer. Here is a reg file fragment for FEATURE_BROWSER_EMULATION:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION]
"contoso.exe"=dword:00002328

Here is the complete set of codes:

  • 9999 (0x270F) - Internet Explorer 9. Webpages are displayed in IE9 Standards mode, regardless of the !DOCTYPE directive.
  • 9000 (0x2328) - Internet Explorer 9. Webpages containing standards-based !DOCTYPE directives are displayed in IE9 mode.
  • 8888 (0x22B8) -Webpages are displayed in IE8 Standards mode, regardless of the !DOCTYPE directive.
  • 8000 (0x1F40) - Webpages containing standards-based !DOCTYPE directives are displayed in IE8 mode.
  • 7000 (0x1B58) - Webpages containing standards-based !DOCTYPE directives are displayed in IE7 Standards mode.

The full docs:

http://msdn.microsoft.com/en-us/library/ee330730%28VS.85%29.aspx#browser_emulation

share|improve this answer
1  
I found this info useful, thanks! – Kevin Hsu Jun 1 '11 at 5:55
5  
With IE 9 installed, it doesn't seem possible to get a page to render in IE 8 mode. Setting the value to 7000 puts in IE 7 mode, and 8000/8888/9000/9999 put it in IE 9 mode. Whether this is some kind of bug or whether it's intentional I don't know though. – mikel Jul 9 '11 at 1:58

WebBrowser control will use whatever version of IE you have installed, but for compatibility reasons it will render pages in IE7 Standards mode by default.

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" > inside the <head> tag of your HTML page.

This meta tag must be added before any links to CSS, JavaScript files etc that are also in your <head> to work properly though (only other <meta> tags or the <title> tag can come before it).

An alternative is to add a registry entry to:

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

And in there add 'myApplicationName.exe' with value '9000' to force the WebBrowser control to display pages in IE9 mode. Though there are other values you can use too too, note that these docs aren't entirely accurate as it does not seem possible to get a page to render in IE 8 mode whatever value you use.

Adding the registry key to the same path in HKCU instead of HKLM will also work - this is useful as writing to HKLM requires admin privileges where as HKCU does not.

share|improve this answer
2  
is working fine. thanks mikel.... – Govind KamalaPrakash Malviya Jul 6 '11 at 10:20
3  
the meta tag works like a charm. Thank you so much! – viggity Dec 16 '11 at 3:25
2  
The different values for the content part can be found here: msdn.microsoft.com/en-us/library/ie/ms533876(v=vs.85).aspx – K B Feb 1 '12 at 13:06
1  
I tried the meta tag but it would not work. I was getting an error message stating "HTML1115: X-UA-Compatible META tag (‘IE=9′) ignored because document mode is already finalized.", which lead me to the webpage evolpin.wordpress.com/2011/02/25/…. The solution was then to ensure that the meta tag was the first element inside the <head> block. – Steg Mar 6 '12 at 10:15
7  
Be careful, if you are running 32-bit applications (that call the 32-bit MSIE) on a 64-bit Windows, the registry entry should be added to HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION instead. – igordcard Sep 8 '12 at 18:36
show 3 more comments

Thank goodness I found this. The following is extremely important:

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

Without this, none of the reports I'd been generating would work post IE9 install despite having worked great in IE8. They would show up properly in a web browser control, but there would be missing letters, jacked up white space, etc, when I called .Print(). They were just basic HTML that should be capable of being rendered even in Mosaic. heh Not sure why the IE7 compatibility mode was going haywire. Notably, you could .Print() the same page 5 times and have it be missing different letters each time. It would even carry over into PDF output, so it's definitely the browser.

share|improve this answer

A note about 64bit Windows which seems to trip up a few folks. If your app is running under 64bit Windows, you likely have to set the DWORD under [HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION] instead.

share|improve this answer

I totally agree with the solution provided, but I think a little clarification is important I think, might be necessary.

For each process (read also: vshost.exe, yourWinformApplication.exe.svchost, or the name of your application.exe) that will need to add a DWORD with the value provided, in my case I leave 9000 (in decimal) in application name and running smoothly and error-free script.

the most common mistake is to believe that it is necessary to add "contoso.exe" AS IS and think it all work!

share|improve this answer

Yes, WebBrowser control uses whatever version of IE you have installed. This means of course that if you run your application on a machine with IE 8 then the IE 9 features you depend on will not be available.

share|improve this answer
1  
Thanks a lot Josh. :) – Omky Jan 6 '11 at 7:06
2  
Not correct. See my answer at the bottom. – whitehawk Mar 18 '11 at 19:50
1  
Re-read my answer again. The downvote was uncalled for. I said that if he tries to use IE9 features then deploys to a machine without IE9, those features will not work. Your backward compatibility registry setting will not change that fact. – Josh Einstein Mar 19 '11 at 19:39
11  
Your first sentence is patently false. Your second sentence, at the very least is both obvious and lazy. BTW thanks for the retributionary downvote. Very mature. – whitehawk Apr 8 '11 at 21:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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