最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp 判断客户端操作系统
时间:2022-07-02 22:32:46 编辑:袖梨 来源:一聚教程网
Function GetOs(content,systemOrBrowser)
Dim temp
temp = Split(content,";")
Select Case systemOrBrowser
Case 0
If InStr(Content,"Windows NT 6.0") Then
GetOs = "Windows Vista"
ElseIf InStr(Content,"Windows NT 5.2") Then
GetOs = "Windows 2003"
ElseIf InStr(Content,"Windows NT 5.1") Then
GetOs = "Windows XP"
ElseIf InStr(Content,"Windows NT 5.0") Then
GetOs = "Windows 2000"
ElseIf InStr(Content,"Windows NT") Then
GetOs = "Windows NT"
ElseIf InStr(Content,"Windows 9") Then
GetOs = "Windows 9x"
ElseIf InStr(Content,"unix") Then
GetOs = "Unix"
ElseIf InStr(Content,"linux") Then
GetOs = "Linux"
ElseIf InStr(Content,"SunOS") Then
GetOs = "SunOS"
ElseIf InStr(Content,"BSD") Then
GetOs = "BSD"
ElseIf InStr(Content,"Mac") Then
GetOs = "Mac"
Else
GetOs = "Other"
End If
Case 1
If InStr(content,"Opera") Then
GetOs = Replace(Left(content,InStr(content,"(") - 1),"/"," ")
ElseIf InStr(content,"MSIE") > 0 Then
GetOs = Trim(temp(1))
Else
GetOs = Replace(Right(temp(4),Len(temp(4)) - InstrRev(temp(4)," ")),"/"," ")
End if
End Select
End Function
相关文章
- PHP页面静态化的优缺点与实现 09-22
- PHP中Toofewargumentstofunction的问题及解决 09-22
- PHPsession反序列化漏洞超详细讲解 09-22
- 前后端分离和跨域问题的详细解决方案(CORS的原理) 09-22
- PHP利用ChatGPT实现轻松创建用户注册页面 09-22
- PHP结合vue导出excel出现乱码的解决方法分享 09-22