I have the following section in my Web.config file
<system.webServer>
<!-- For now..... lets be safe and put IE8 in IE7 compatibility mode-->
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=EmulateIE7" />
</customHeaders>
</httpProtocol>
</system.webServer>
but the
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
is not present in the header of the pages when they are rendered on my site. I followed the advice in this post http://stackoverflow.com/questions/713581/asp-net-app-set-ie7-compatibility-mode but it does not appear to be working as expected using IE8 and IIS6. Any hints?