Count Online Active users

Karthikreddy
Posted by Karthikreddy under ASP.NET category on | Points: 40 | Views : 2093
Then right click on your web project and then click add new Item -> then select the Global Application Class from template list window.
and Add the Following code


<%@ Application Language="C#" %>

<script runat="server">

void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
Application["Currentusers"]=0;
}

void Application_End(object sender, EventArgs e)
{
// Code that runs on application shutdown

}

void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs

}

void Session_Start(object sender, EventArgs e)
{
// Code that runs when a new session is started
Application.Lock();
Application["Currentusers"] = (int)Application["Currentusers"] + 1;
Application.UnLock();
}

void Session_End(object sender, EventArgs e)
{
// Code that runs when a session ends.
// Note: The Session_End event is raised only when the sessionstate mode
// is set to InProc in the Web.config file. If session mode is set to StateServer
// or SQLServer, the event is not raised.
Application.Lock();
if ((int)Application["Currentusers"] > 0)
{
Application["Currentusers"] = (int)Application["Currentusers"] - 1;
Application.UnLock();


}

}

</script>


Add this Code in top of the Master page

Online Users:<%:Application["CurrentUsers"].ToString() %>

Comments or Responses

Posted by: Santhi on: 2/18/2013 Level:Starter | Status: [Member] | Points: 10
It is very useful..

Login to post response