'************************************** ' for :Simple unique visitor tracking an ' d automatically daily e-mail delivery us ' ing Global.asa '************************************** Licence: 1. Released under GPL licence. You are free to use this code for any purpose. 2. This software is provided "as is" with no warranties of any kind. 3. You may use and/or distribute this software, but this copyright notice may NOT be removed, obscured or modified from source code. '************************************** ' Name: Simple unique visitor tracking a ' nd automatically daily e-mail delivery u ' sing Global.asa ' Description:This code stores "unique v ' isits" (defining that as visits from dif ' ferent IP addresses) to the site and wil ' l send a daily detailed activity report ' (entry point, Referrer URL, IP, User Age ' nt, etc) to the e-mail account specified ' . This script solves a common problem when using global.asa Session_OnStart to just increase a counter of unique visitors. Many stateless clients (like web spider) reject session level cookies, so the result using that technic is not very accurate. (for example, a web spider hitting 20 pages of your site would count as 20 visits using the simple simple Session_OnStart counter technic) ' By: Ivan Loire ' ' ' Inputs:None ' ' Returns:It will send a daily e-mail li ' ke this: From: To: Subject: Daily report 13/04/2005 - 132 visits Number of visitors (with different IP address): 132 -- TimeStamp: 13/4/2005 - 0:16:11 User Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322) Language: es IP: 200.73.9.38 URL: /demo/online_photo_catalog_vbscript/online_photo_catalog_vbscript.asp REFERRER: http://www.desarrolloweb.com/articulos/1583.php?manual=11 -- TimeStamp: 13/4/2005 - 0:32:18 User Agent: msnbot/1.0 (+http://search.msn.com/msnbot.htm) Language: IP: 207.46.98.46 URL: /albums/index.asp -- etc... ' 'Assumes:None ' 'Side Effects:None 'This code is copyrighted and has limite ' d warranties. 'Please see http://www.Planet-Source-Cod ' e.com/xq/ASP/txtCodeId.9168/lngWId.4/qx/ ' vb/scripts/ShowCode.htm 'for details. '**************************************