I want to know the amount concurrent sessions at a given time. But with spiders and load-balancers and perhaps influences that do not know about, how safe is it to do this in global asax:
void Session_Start(object sender, EventArgs e)
{
counter++;
}
void Session_End(object sender, EventArgs e)
{
counter--;
}
Any tips?