欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net及javascript判断是否手机访问的方法

程序员文章站 2023-12-01 14:20:10
本文实例讲述了asp.net及javascript判断是否手机访问的方法。分享给大家供大家参考,具体如下: /// /// 判断...

本文实例讲述了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程序设计有所帮助。