asp.net及javascript判断是否手机访问的方法
本文实例讲述了asp.net及javascript判断是否手机访问的方法。分享给大家供大家参考,具体如下:
///<summary>
///判断手机用户UserAgent
///</summary>
///<returns></returns>
privateboolIsMobile()
{
HttpContextcontext=HttpContext.Current;
if(context!=null)
{
HttpRequestrequest=context.Request;
if(request.Browser.IsMobileDevice)
returntrue;
stringMobileUserAgent=System.Configuration.ConfigurationManager.AppSettings["MobileUserAgent"];
RegexMOBILE_REGEX=newRegex(MobileUserAgent);
if(string.IsNullOrEmpty(request.UserAgent)||MOBILE_REGEX.IsMatch(request.UserAgent.ToLower()))
returntrue;
}
returnfalse;
}
以下为web.config配置里边的
<addkey="MobileUserAgent"value="iphone|android|nokia|zte|huawei|lenovo|samsung|motorola|sonyericsson|lg|philips|gionee|htc|coolpad|symbian|sony|ericsson|mot|cmcc|iemobile|sgh|panasonic|alcatel|cldc|midp|wap|mobile|blackberry|windowsce|mqqbrowser|ucweb"/>
<script>
varsystem={win:false,mac:false,xll:false};
//检测平台
varp=navigator.platform;
system.win=p.indexOf("Win")==0;
system.mac=p.indexOf("Mac")==0;
system.x11=(p=="X11")||(p.indexOf("Linux")==0);
//跳转语句
if(system.win||system.mac||system.xll)
{
alert(system.mac)
}
else
{
window.location.href="手机访问地址";
}
</script>
更多关于asp.net相关内容感兴趣的读者可查看本站专题:《asp.net操作json技巧总结》、《asp.net字符串操作技巧汇总》、《asp.net操作XML技巧总结》、《asp.net文件操作技巧汇总》、《asp.netajax技巧总结专题》及《asp.net缓存操作技巧总结》。
希望本文所述对大家asp.net程序设计有所帮助。