|
-
Oct 17th, 2001, 10:01 AM
#1
Thread Starter
Hyperactive Member
browser detection
Hi All
Is it possible to browser detect using ASP?
gsc1ugs
"Life isn't about finding yourself. Life is about creating yourself."
--George Bernard Shaw
-
Oct 17th, 2001, 11:17 AM
#2
Frenzied Member
use the user agent header:
VB Code:
If InStr(Request.ServerVariables("HTTP_USER_AGENT"), "MSIE") > 0 Then
' browser is IE
Else
' browser is NS
End If
-
Oct 17th, 2001, 11:23 AM
#3
Thread Starter
Hyperactive Member
"Life isn't about finding yourself. Life is about creating yourself."
--George Bernard Shaw
-
Oct 17th, 2001, 11:33 AM
#4
Frenzied Member
do a response.write of the user agent,
in it there's:
-browser version
-broser type
-os
-
Oct 17th, 2001, 11:35 AM
#5
Thread Starter
Hyperactive Member
How do you mean, i've never seen this before? new
"Life isn't about finding yourself. Life is about creating yourself."
--George Bernard Shaw
-
Oct 17th, 2001, 11:41 AM
#6
Frenzied Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|