区分IE兼容性视图

问题描述 投票:0回答:1

如果用户在IE 7上,我就读了

<% = Request.Browser.Version %>

我得到7.0

如果他们有IE 9并且在兼容性视图上,我会得到同样的东西。

Request.Browser中有什么可以区分真正的IE7用户和使用IE8或IE9但在兼容模式下的用户吗?

asp.net-mvc internet-explorer compatibility ie8-compatibility-mode
1个回答
1
投票

最好使用JavaScript在客户端执行此操作。你可以使用这样的东西:

http://code.google.com/p/ie6-upgrade-warning/

您可以根据需要调整它。

如果您的目标只是确保用户不处于兼容模式,那么您可以使用X-UA-COMPATIBLE的元标记或http标头版本:

<html>
   <head>
       <meta http-equiv="X-UA-Compatible" content="IE=Edge" >
   </head>
   <body>
       <p>Content goes here.</p>
   </body>
</html> 
© www.soinside.com 2019 - 2024. All rights reserved.