从经典ASP检测移动用户代理并在会话启动时重定向

前端之家收集整理的这篇文章主要介绍了从经典ASP检测移动用户代理并在会话启动时重定向前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想检测一个移动用户代理,并在会话开始时在一个经典的ASP应用程序中重定向它们.有谁知道一个很好的方法解决这个问题?

解决方法

看一眼:

http://mobiforge.com/developing/story/lightweight-device-detection-asp

sub is_mobile()
  Dim Regex,match
  Set Regex = New RegExp
     With Regex
        .Pattern = "(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone|windows ce|pda|mobile|mini|palm|ipad)"
        .IgnoreCase = True
        .Global = True
      End With
   match = Regex.test(Request.ServerVariables("HTTP_USER_AGENT"))
   If match
      return True
   Else
      return False
   End If
End Sub

**免责声明:*代码可能不起作用,因为我没有测试它的方法和经典ASP的小知识.

原文链接:https://www.f2er.com/aspnet/251451.html

猜你在找的asp.Net相关文章