Results 1 to 3 of 3

Thread: Detecting OS and Browser type?

  1. #1
    Junior Member
    Join Date
    Nov 2002
    Posts
    16

    Detecting OS and Browser type?

    Can any of you guys refer me to a script via VB or ASP that can detect the OS and Browser type a user is using?

    Is it something similar like this IP addy code:
    Your IP address is: <%=Request.ServerVariables("REMOTE_ADDR")%>

    Thanks.
    James

  2. #2
    You could try here:
    http://www.4guysfromrolla.com/webtec...awk/faq3.shtml
    I've not written one in ASP, so I've not had to look for any references before. The example given would appear to cost $ though. The above sites home page has some good links to other ASP resources.
    Flod!

  3. #3
    Senior Member
    Join Date
    Feb 2003
    Posts
    118
    You can use javascript:

    Browser = navigator.userAgent (ASP: Request.ServerVariables("HTTP_USER_AGENT") )
    OS = navigator.oscpu


    you can have also

    navigator.appVersion
    navigator.platform
    navigator.appCodeName
    navigator.appName
    navigator.language

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •