美文网首页.net前后台开发知识集
.Net判断是否是安卓版的微信

.Net判断是否是安卓版的微信

作者: 飞天猪Pony | 来源:发表于2017-07-19 15:43 被阅读8次
protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
    var u = Request.UserAgent;
    if (IsAndroidWX(u))
    {   
        //如果是安卓版的微信就跳转到新的页面
        filterContext.HttpContext.Response.Redirect("http://www.baidu.com");
    }
}
[NonAction]
private bool IsAndroidWX(string u)
{
      if (u.IndexOf("Android") > -1 && u.IndexOf("MicroMessenger") > -1)
           return true;
      return false;
}

相关文章

网友评论

    本文标题:.Net判断是否是安卓版的微信

    本文链接:https://www.haomeiwen.com/subject/jxblkxtx.html