码迷,mamicode.com
首页 > 其他好文 > 详细

IsMobile

时间:2016-10-01 10:31:35      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

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;
}

IsMobile

标签:

原文地址:http://www.cnblogs.com/zwei1121/p/5925459.html

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