Username:
Password:

Search:

Count Online Visitor in ASP.Net & VB.Net
out of 0 votes
Posted By sens
Posted On 7/26/2010 9:28:18 PM
Price: $0.00
-
Downloads: 0
Views: 277
BeboDeliciousDiggFacebookMyspaceRedditStumbleUponTechnoratiTwitter

Place the following code in Global.asax file. Here, we track the active Sessions for our web application. There are three subroutines into which we will be looking to do this – Application_OnStart, Session_OnStart, Session_OnEnd.

Step-1 :

In the Application_OnStart subroutine, we have to set the user count to 0, when the server starts the application.

Sub Application_OnStart (Sender as Object, E as EventArgs)
     ' Set user count to 0 when start the application 
     Application("ActiveUsers") = 0
 End Sub

Step-2 :

In the Session_OnStart subroutine, we have to increament the Activeuser by 1:

 Sub Session_OnStart (Sender as Object, E as EventArgs)
      Application.Lock 
      Application("ActiveUsers") = Cint(Application("ActiveUsers")) + 1 
      Application.UnLock
 End Sub

In this case you have to set Timeout – you don’t need to put anything here, but the default Timeout is 20 minutes, so you can change it depending on the needs of your particular application.

To set the session start time, we add (Session(”Start”) = Now). Basically, when the user hits the site and opens a web page (asp.net page), at the time of opening the page, the session starts. Next, we increase the active visitors count when we start the session (Application(”ActiveUsers”) = Cint(Application(”ActiveUsers”)) + 1 ). The Application lock & unlock adds more stability to the counting.

Step-3 :

we must decrement the number of Active Users on the basis of online sessions in the Session_OnEnd subroutine:

 Sub Session_OnEnd(Sender as Object, E as EventArgs)
     Application.Lock 
     Application("ActiveUsers") = Cint(Application("ActiveUsers")) - 1 
     Application.UnLock
 End Sub

Step-4 :

Then you can place the following code to access the Application(”ActiveUsers”) in .aspx file

<% 
Dim intNumber as Integer
intNumber =Application("ActiveUsers")
response.write (intNumber ) 
%> Currently Online

Download

There is no file available for download
Ask question feature is only available for registered member only. If you have not registered on the site, please click here to register
Rating feature is only available for registered member only. If you have not registered on the site, please click here to register