码迷,mamicode.com
首页 > 移动开发 > 详细

移动端访问网站页面跳转到指定手机页面

时间:2015-12-04 18:25:39      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:

#region 手机端跳转到指定手机页地址
    /// <summary>
    /// 手机端跳转到指定手机页地址
    /// </summary>
    /// <param name="url">手机页地址</param>
    public static void m_goUrl(string url)
    {
		//排除手机访问电脑端
		if(BTool.getCookies("pcmod","")!="1")
		{
			//判断手机端
			string UserAgent = HttpContext.Current.Request.ServerVariables["HTTP_USER_AGENT"];
			bool isMobile = Regex.IsMatch(UserAgent, @"(iPhone|Android)", RegexOptions.IgnoreCase);
			if (isMobile)
			{
				HttpContext.Current.Response.Redirect(url);
				HttpContext.Current.Response.End();
			}
		}
    }
    #endregion

  

移动端访问网站页面跳转到指定手机页面

标签:

原文地址:http://www.cnblogs.com/candyzhmm/p/5020016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!