I have a strange issue with a Telerik RadWindow that only occurs in IE8. It works fine when I force the browser to use Document Mode: IE7 Standards. I am trying to specify IE7 compatibility mode on a Per-Page Basis for just one page in my site. using
<head>
<!-- Mimic Internet Explorer 7 -->
<title>My Web Page</title>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
</head>
According to the MSDN article this should do it, but it does not seem to work for me. Any other alternatives other than forcing a custom HTTP response header throughout the whole site. I only need to fix this one page?