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

link|improve this question

61% accept rate
Why not try and find out? – John Saunders Jan 6 '11 at 6:10
feedback

4 Answers

up vote 17 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

link|improve this answer
1  
I found this info useful, thanks! – Kevin Hsu Jun 1 '11 at 5:55
3  
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
feedback

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" > to the HTML page you're showing. 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.

link|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
1  
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 at 13:06
If this setting could be stored in an CSS file I would be happier. Now I have to go through many documents or is there a multiline search-and-replace function in Visual Studio? – K B Feb 2 at 15:23
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 at 10:15
feedback

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.

link|improve this answer
feedback

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.

link|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
4  
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
feedback

Your Answer

 
or
required, but never shown

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