【发布时间】:2012-11-29 23:20:51
【问题描述】:
我的 MVC3 应用程序中有 Getaway 的布局:
@if ((Request.Browser.Browser == "IE") && ((Request.Browser.MajorVersion == 7)))
{
//show some content
}
else
{
//show another content
}
我有很多用户抱怨(使用 Internet Explorer 8 的用户)。他们从我的应用程序中看到 Internet Explorer 7 内容。 我检测 Internet Explorer 7 版本的方式有什么问题? 如何在我的应用程序中 100% 确定用户拥有 Internet Explorer 7 版本? 这可能是特定的操作系统问题吗?
【问题讨论】:
-
您的 Internet Explorer 8 用户是否在兼容性视图中连接?
标签: asp.net asp.net-mvc-3