zwei1121

博客园 首页 新随笔 联系 订阅 管理

public static bool IsMobile()
{

Regex RegexMobile = new Regex(@"(iemobile|iphone|ipod|android|nokia|sonyericsson|blackberry|samsung|sec\-|windows ce|motorola|mot\-|up.b|midp\-)", RegexOptions.IgnoreCase | RegexOptions.Multiline);
if (HttpContext.Current.Request.Browser.IsMobileDevice)
{
return true;
}

if (!string.IsNullOrEmpty(HttpContext.Current.Request.UserAgent) && RegexMobile.IsMatch(HttpContext.Current.Request.UserAgent))
{
return true;
}
return false;
}

posted on 2016-10-01 09:49  zwei  阅读(322)  评论(0编辑  收藏  举报