ASP.NET判断是否为手机登录

2018-06-22 07:58:13来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

        protected void Page_Load(object sender, EventArgs e)
        {
            MobileHandle();
           }

页面加载时候判断是否为手机登录

        protected void MobileHandle()
        {
            string mobilePath = PublicFunction.GetConfigValue("MobilePath");//手机页面的路径
            if (!string.IsNullOrEmpty(mobilePath))
            {
                bool isMobile = PublicFunction.IsMobile(Request.UserAgent);
                if (isMobile)
                {
                    Response.Redirect(mobilePath);//为手机登录的话跳转手机页面
                }
            }
        }
  public class PublicFunction
    {
        static string[] mobileTag = { "iphone", "ios", "ipad", "android", "mobile" };

        /// <summary>
        /// 判断是否是手机打开
        /// </summary>
        /// <param name="userAgent">用户浏览器代理信息</param>
        /// <returns></returns>
        public static bool IsMobile(string userAgent)
        {
            bool result = false;
            userAgent = userAgent.ToLower();
            foreach (string sTmp in mobileTag)
            {
                if (userAgent.Contains(sTmp))
                {
                    result = true;
                    break;
                }
            }
            return result;
        }
}

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:.net加密web.config文件

下一篇:WPF 列表开启虚拟化的方式