How to programmatically turn off quirks mode in IE8 WebBrowser control?

If you don’t want to use the registry key technique, you could insert the following tag:

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

The “content” attribute forces rendering in various modes.

Leave a Comment