The solution was to simply specify a default compatibility mode for an earlier version of Internet Explorer. You can read up on the options here, but the solution I used was a one-line addition (in yellow, below) to the WEB.CONFIG file:
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-UA-Compatible" value="IE=8" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
That's it. Add the line, save WEB.CONFIG and the change is immediate. An interesting side note: You can specify a series of versions to regress to which effectively allows you to *skip* rendering for a specific version of IE by leaving that version out of the regression chain. For instance, you could specify "IE=8, IE=6" which would then skip IE7 compatibility rendering for browsers that didn't support IE8 rendering but did support IE7 and IE6 rendering. I've never needed to do this but it's nice to know the option exists.
No comments:
Post a Comment