本文實例講述了asp.net及javascript判斷是否手機訪問的方法。分享給大家供大家參考,具體如下:
/// <summary> /// 判斷手機用戶UserAgent /// </summary> /// <returns></returns> private bool IsMobile() { HttpContext context = HttpContext.Current; if (context != null) { HttpRequest request = context.Request; if (request.Browser.IsMobileDevice) return true; string MobileUserAgent=System.Configuration.ConfigurationManager.AppSettings["MobileUserAgent"]; Regex MOBILE_REGEX = new Regex(MobileUserAgent); if (string.IsNullOrEmpty(request.UserAgent) || MOBILE_REGEX.IsMatch(request.UserAgent.ToLower())) return true; } return false; }
以下為web.config配置裡邊的
復制代碼 代碼如下:<add key="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|windows ce|mqqbrowser|ucweb"/>
<script> var system ={ win : false, mac : false, xll : false }; //檢測平台 var p = 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.net ajax技巧總結專題》及《asp.net緩存操作技巧總結》。
希望本文所述對大家asp.net程序設計有所幫助。