Force IE8 Into IE7 Compatiblity Mode
问题 Is there a way to force IE8 into IE7 compatibility mode using .NET or Javascript? 回答1: If you add this to your meta tags: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> IE8 will render the page like IE7. 回答2: You can do it in the web.config <httpProtocol> <customHeaders> <add name="X-UA-Compatible" value="IE=7"/> </customHeaders> </httpProtocol> I have better results with this over the above solutions. Not sure why this wasn't given as a solution. :) 回答3: I might have found it