I code Application_BeginRequest in Global.asax as following
protected void Application_BeginRequest(Object sender, EventArgs e)
{
Application["appCtr"] = (int) Application["appCtr"]+ 1;
}
But it is executed two times instead one times, why? pls answer me. thanks
...
Go to the complete details ...