ASP를 사용하여 운영 체제가 Vista인지 확인하는 방법 인터넷에서 기능을 찾았지만 Vista 시스템인지 알 수 없습니다.
제가 찾은 기능입니다. 인터넷:
Function GetCurrOS()
Dim Info
Info = navigator.appVersion
If Instr(info,"NT 5.1")>0 Then
GetCurrOS = "Windows XP"
ElseIf Instr(info,"Tel") >0 Then
GetCurrOS = "Telport"
ElseIf Instr(info,"webzip")>0 Then
GetCurrOS = "webzip"
ElseIf Instr(info,"flashget")> 0 Then
GetCurrOS = "flashget"
ElseIf Instr(info,"offline")>0 Then
GetCurrOS = "offline"
ElseIf Instr (info,"NT 5")>0 그러면
GetCurrOS = "Windows 2000"
ElseIf Instr(info,"NT 4")>0 그러면
GetCurrOS = "Windows NT4"
ElseIf Instr(info,"98")> 0 그러면
GetCurrOS = "Windows 98"
ElseIf Instr(info,"95")>0 그러면
GetCurrOS = "Windows 95"
Else
GetCurrOS = "UnKnow"
End If
End Function
더 좋은 기능이 있으면 알려주세요