I want to use IE8 as a WebBrowser control in a C# application. How can I disable "quirks mode" and force IE into standards compliance (as far as it is implemented)?
|
|
|
I think the issue you're facing is described in IEBlog: WebBrowser Control Rendering Modes in IE8:
Here I should note that the comments on the page say the above is incorrect, and that "IE8 renders pages running within instances of the WebBrowser control in IE7 Strict Mode OR Quirks mode by default, depending on the page's doctype." The solution is as follows:
So it sounds like the "programmatic" solution is to write a key in the registry saying you want IE8 Standards mode for |
||||
|
|
If you don't want to use the registry key technique, you could insert the following tag:
The "content" attribute forces rendering in various modes. |
|||||||||||
|
|
The last I heard was that IE8 would use standards mode by default. Are you seeing an actual problem with the latest beta version? Are you sure it's rendering in quirks mode to start with, without a user explicitly hitting the compatibility view button? |
|||||||
|
|
Please note there have been some changes since the beta, the registry keys have been renamed etc. Read more here. |
|||
|
|