Assuming you’re working in ASP.Net, don’t worry – there’s a temporary fix for you. It will force the browser to view the page in IE7 emulation mode (as if IE8 were running in what it calls ‘Compatibility mode‘).
If your entire site looks bad, then you might think of adding this section to your web.config file, under the configuration/system.webServer section:
<httpProtocol> <customHeaders> <clear /> <add name="X-UA-Compatible" value="IE=EmulateIE7" /> </customHeaders> </httpProtocol>
If it’s just a small number of pages, you can add a meta tag in your head section:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
All Things DotNet Discussed – Winforms/ASP.Net/SharePoint/WPF
Leave a reply
You must be logged in to post a comment.