Counting how many users you have online
Counting how many users you currently have viewing your website is a neat thing to add to your site and it's simple.
Tips and Tutorials
Active users
This is a common feature on websites showing that there are x visitors on site at present .
Tips and Tutorials
text counter
This example uses a flat text file to store the count .
Tips and Tutorials
'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.
Tips and Tutorials
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.
Tips and Tutorials
Display users-online with ASP
Learn how to use global.
Tips and Tutorials
How to create and retrieve cookies using ASP
Cookies can be used to remember things about a user when they come back to your site.
Tips and Tutorials
Cookies with ASP
Cookies can be a good method for passing data between pages and especially for retaining data between sessions.
Tips and Tutorials
Write and Read A Cookie
Cookies enable you to write text directly to a users computer.
Tips and Tutorials
Cookies 101
Cookies are a very useful; they can store usernames/password, preferences, last visits, etc.
Tips and Tutorials