public void Application_Start(object sender, EventArgs e)
{
Application("userCount") = 0;
}
public void Application_End(object sender, EventArgs e)
{
}
public void Application_Error(object sender, EventArgs e)
{
}
public void Session_Start(object sender, EventArgs e)
{
Application("userCount") += 1;
}
public void Session_End(object sender, EventArgs e)
{
Application("userCount") -= 1;
}