|
|
| User Sessions [+] Favor-It | |
| |
 |
| | Sort By:
|
So you want to tell your users how many people are currently on your site. Here is how it is done. It is nice and easy with only a few lines of code and no need for database interaction. Just use the Session Object to keep count! Author: Gary Williams Code: ASP 2.0 & VBScript |
I have seen many active users scripts but they seem to use the session_onend and session_onstart subs in the global.asa to function. This is a pity because most FREE providers do not support global.asa because of resource consumption on the servers Author: Craig Bovis Code: ASP 3.0 & VBScript |
This little piece of code calculates number of active users, it uses application level variables rather than slower, less efficient session variables. There is also no need for changes to global.asa file. Code: ASP 3.0 & VBScript |
|  | |
If you are reading this page then I shall assume that you already know a little bit about ASP and running ASP applications. This tutorial will teach you how to create a Graphical Session Hit Counter using ASP. Author: Bruce Corkhill Code: ASP 3.0 & VBScript |
John builds off the ideas from his previous article, "Counting Active Users." The code is well commented, and available to download. Author: John Peterson Code: ASP 3.0 & VBScript |
"Like most of our topics, I'm covering this one due to user demand for it. If you've been to any one of a few dozen ASP-based sites recently, you've probably seen an example of the script we've going to cover in this article..." Author: John Code: ASP 3.0 & VBScript |
Many people ask me how I do this so here is the code I use. There is not a lot to this and this isn't going to give you a totally accurate count, but it works well enough. I find that the busier your site is the more accurate you will find it to be. Author: PowerASP Code: ASP 3.0 & VBScript |
|  | |
This script counts the number of active users on a site. When a new user arrives at the site, a new session is created for them and the number of active users is incremented. Author: Jeff Anderson Code: ASP 3.0 & VBScript |
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). Keeps count of current users on your site. Author: Asif Code: ASP 2.0 & VBScript |
Icon Key >
 - Recently Updated
 - Showcase Listing
|