标签:
#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