IsMobile

Posted zwei1121

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IsMobile相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章