Skip to content

Instantly share code, notes, and snippets.

@augustoproiete
Created May 8, 2012 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save augustoproiete/2637152 to your computer and use it in GitHub Desktop.
Save augustoproiete/2637152 to your computer and use it in GitHub Desktop.
Force the latest IE version for every View/Page, use Chrome frame if available
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- ... -->
<system.webServer>
<!-- ... -->
<httpProtocol>
<customHeaders>
<!-- Force the latest IE version, use Chrome frame if available -->
<add name="X-UA-Compatible" value="IE=Edge,chrome=1" />
</customHeaders>
</httpProtocol>
<!-- ... -->
</system.webServer>
<!-- ... -->
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment