asp下通过HTTP_USER_AGENT判断用户是从手机上访问,还是电脑IE上访问

来源:asp之家 时间:2011-02-24 11:00:00 

通过HTTP_USER_AGENT判断用户是从手机上访问,还是电脑IE上访问。

asp代码片段:主要使用了正则匹配手机环境,大家可以补充手机平台。

代码如下:


set regex = new regexp
regex.ignorecase = true
regex.global = true
regex.pattern = "mini 9.5|vx1000|lge |m800|e860|u940|ux840|compal|wireless| mobi|ahong|lg380|lgku|lgu900|lg210|lg47|lg920|lg840|lg370|sam-r|mg50|s55|g83|t66|vx400|mk99|d615|d763|el370|sl900|mp500|samu3|samu4|vx10|xda_|samu5|samu6|samu7|samu9|a615|b832|m881|s920|n210|s700|c-810|_h797|mob-x|sk16d|848b|mowser|s580|r800|471x|v120|rim8|c500foma:|160x|x160|480x|x640|t503|w839|i250|sprint|w398samr810|m5252|c7100|mt126|x225|s5330|s820|htil-g1|fly v71|s302|-x113|novarra|k610i|-three|8325rc|8352rc|sanyo|vx54|c888|nx250|n120|mtk |c5588|s710|t880|c5005|i;458x|p404i|s210|c5100|teleca|s940|c500|s590|foma|samsu|vx8|vx9|a1000|_mms|myx|a700|gu1100|bc831|e300|ems100|me701|me702m-three|sd588|s800|8325rc|ac831|mw200|brew |d88|htc\/|htc_touch|355x|m50|km100|d736|p-9521|telco|sl74|ktouch|m4u\/|me702|8325rc|kddi|phone|lg |sonyericsson|samsung|240x|x320vx10|nokia|sony cmd|motorola|up.browser|up.link|mmp|symbian|smartphone|midp|wap|vodafone|o2|pocket|kindle|mobile|psp|treo|iris|3g_t|windows ce|opera mobi|windows ce; smartphone;|windows ce; iemobile|ipod|iphone|android|opera mini|blackberry|palm os|palm|hiptop|avantgo|fennec|plucker|xiino|blazer|elaine|iris|3g_t|windows ce|opera mobi|windows ce; smartphone;|windows ce; iemobile"

agent = request.ServerVariables("HTTP_USER_AGENT") & ""
if agent <> "" then
if not regex.test(agent) then
'不是从手机来的访问,跳转
response.redirect(http://www.cidianwang.com)
end if
end if


感谢老曹提供的asp代码。
dragonchen82@hotmail.com

标签:HTTP_USER_AGENT,手机,电脑
0
投稿

猜你喜欢

  • 基于jupyter代码无法在pycharm中运行的解决方法

    2023-09-15 06:46:38
  • Insert into与AddNew哪一个更好?

    2009-10-28 18:30:00
  • mysql乱码问题分析与解决方法

    2024-01-14 21:05:51
  • Python time模块之时间戳与结构化时间的使用

    2024-01-02 09:07:51
  • 使用SQL实现车流量的计算的示例代码

    2024-01-21 21:53:13
  • Python二进制串转换为通用字符串的方法

    2022-09-30 19:36:11
  • Python中字典和JSON互转操作实例

    2023-03-12 14:18:11
  • python发送邮件接收邮件示例分享

    2023-05-25 02:01:47
  • 深入浅析Python代码规范性检测

    2023-08-23 21:16:55
  • 利用CSS属性实现进度条的方式

    2010-02-25 12:31:00
  • 数据结构简明备忘录 线性表

    2024-01-25 01:59:28
  • python3 通过 pybind11 使用Eigen加速代码的步骤详解

    2023-05-13 21:53:18
  • 在js中调用asp页面的方法

    2007-08-21 20:30:00
  • 使用Python给头像戴上圣诞帽的图像操作过程解析

    2023-03-17 13:22:01
  • Pycharm5个非常有用的方法技巧

    2023-12-03 00:19:08
  • 详解Python 数据库 (sqlite3)应用

    2024-01-21 06:14:46
  • 使用pytorch搭建AlexNet操作(微调预训练模型及手动搭建)

    2023-05-04 05:09:51
  • Django用户认证系统 组与权限解析

    2022-05-06 06:10:22
  • XML轻松学习手册(3)XML的术语

    2008-09-05 17:17:00
  • Python判断某个用户对某个文件的权限

    2023-12-15 01:25:27
  • asp之家 网络编程 m.aspxhome.com