Counters

Disply Number of Unique Visitors Currently on Site

By implementing this code on your site, you can display the number of visitors that are currently browsing your site. It increments a counter every time that a unique session begins on your site and decrements a counter every time that a session ends.

Dev ASP Hit Counter

You can count the number of visitors on your site with a very simple ASP code. Create a file Count.asp with the following code and add in the header of every page useing Server Side Include(SSI).

text counter

This example uses a flat text file to store the count . Shows the basics of file usage in ASP.

'accurate' text counter

This is a slightly better version of your standard text counter , this example only increments a count once per session whereas a normal counter could increment several times.

Active users

This is a common feature on websites showing that there are x visitors on site at present . This example demonstartes how this is achieved

Display users-online with ASP

Learn how to use global.asa to display the number of users visiting your site. This tutorial can be broken down into two sections, global.asa, and numvis.asp. Before you can begin this tutorial, make sure you