|
 |
asp_web_howto thread: how do i track visitors?
Message #1 by "tommy angel" <tommy_angel@u...> on Wed, 20 Jun 2001 11:38:07
|
|
i want to track users (e.g browser info, http-referer, screen resolution
etc) and store this into a database (access *.mdb).
how do i do this ?
Message #2 by "Morgan, Rob" <Rob.Morgan@o...> on Wed, 20 Jun 2001 07:26:20 -0400
|
|
one way is the following....
cyScape is pleased to announce the availability of BrowserHawk 5.0,
now with browser statistics and reporting, new detection techniques, more
plug-ins, screen info, and over 100 browser settings detected in all!
BrowserHawk is the ultimate browser sniffer, making browser compatibility
a breeze. Easily detect and track all browsers, WAP/DoCoMo and PDA devices.
Detect Flash and other plug-ins, security settings such as disabled
cookies/JavaScript/ActiveX, screen/display size, Java settings, connection
speed, browser builds and much more. It's also a great troubleshooting
tool.
See the live demo of BrowserHawk 5.0 at:
http://cyscape.com/showbrow.asp
-----Original Message-----
From: tommy angel [mailto:tommy_angel@u...]
Sent: Wednesday, June 20, 2001 6:46 AM
To: ASP Web HowTo
Subject: [asp_web_howto] how do i track visitors?
i want to track users (e.g browser info, http-referer, screen resolution
etc) and store this into a database (access *.mdb).
how do i do this ?
Message #3 by Pieter Schutte <psc@a...> on Wed, 20 Jun 2001 14:56:27 +0200
|
|
Some of the fields you need are stored in Request.ServerVariables.
To get a list of all the values:
For Each K in request.ServerVariables
Response.write k & "<br>"
Next
-----Original Message-----
From: tommy angel [mailto:tommy_angel@u...]
Sent: Wednesday, June 20, 2001 12:46 PM
To: ASP Web HowTo
Subject: [asp_web_howto] how do i track visitors?
i want to track users (e.g browser info, http-referer, screen
resolution
etc) and store this into a database (access *.mdb).
how do i do this ?
|
|
 |