我在mvc3中构建一个网站,我想在firefox上限制我的网站。
我的意思是说当有人在firefox上打开我的网站时它会正确打开但是当有人在Chrome或IE上打开它时会给出一个自定义错误。我正在使用c#和mvc3
答案 0 :(得分:3)
您可以编写一个global action filter来测试User-Agent HTTP请求标头:
public class FireFoxOnlyAttribute : ActionFilterAttribute, IAuthorizationFilter
{
public void OnAuthorization(AuthorizationContext filterContext)
{
var userAgent = filterContext.HttpContext.Request.Headers["User-Agent"];
if (!IsFirefox(userAgent))
{
filterContext.Result = new ViewResult
{
ViewName = "~/Views/Shared/Unauthorized.cshtml"
};
}
}
private bool IsFirefox(string userAgent)
{
// up to you to implement this method. You could use
// regular expressions or simple IndexOf method or whatever you like
throw new NotImplementedException();
}
}
然后在Global.asax中注册此过滤器:
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
filters.Add(new FireFoxOnlyAttribute());
}
答案 1 :(得分:1)
您正在寻找与您的网站相关联的用户的用户代理,可以通过您的控制器中的此调用来检索该用户代理:
Request.UserAgent
但并非我同意这种模式。
答案 2 :(得分:0)
这是一个简单的javascript函数,您可以将其添加到代码中并执行针对。
的操作function detect_browser() {
var agt=navigator.userAgent.toLowerCase();
if (agt.indexOf("firefox") != -1) return true;
else{
window.location="";//Here within quotes write the location of your error page.
}
}
在主页面上,您可以在页面加载事件上调用该函数。虽然不推荐这种做法。
答案 3 :(得分:0)
您可以将Request.UserAgent测试为路由约束的一部分。
例如,您可以按如下方式定义路径约束例程:
public class UserAgentConstraint : IRouteConstraint
{
private string requiredUserAgent;
public UserAgentConstraint(string agentParam)
{
requiredUserAgent = agentParam;
}
public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
{
return httpContext.Request.UserAgent != null && httpContext.Request.UserAgent.Contains(requiredUserAgent);
}
}
然后将以下约束添加到路径:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional }, //Parameter defaults
new { customConstraint = new UserAgentConstraint("Firefox") } //Constraint
);