0

I have IE9 installed in my machine(Windows 7), when i run winform webbrowser control with registry key 8000 (SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION) for current user on a 32 bit machine. i can still see winform webbrowser control rendering in IE9 mode, I am expecting it to render with IE8 compatibility mode.

With IE10 in my machine and with same registry settings, i can see , the page is rendered in IE8 compatibility mode. But we have to support IE8, IE9 and IE10. Most of the users are on IE9 .

So how to make winform webbrowser control in a machine having IE9 to render in IE8 compatibility mode. Please help

1 Answers1

0

There are two solutions for this. Please check this link to more details.

1) Change Registry to use IE 9 or your latest IE version in WPF Browser control. 2) Add Meta tag to web page which IE version should used to render.

<meta http-equiv="X-UA-Compatible" content=" IE=edge " >
or
<meta http-equiv="X-UA-Compatible" content="IE=9" >
Sampath
  • 1,173
  • 18
  • 29