Hi guys.
I have an applications that listing who are actively accessing the application. Once the users close the browser, I need to update the list.
I had tried the below events on Global.asax.cs, but when I closed the browser, both events didn't trigger.
void Application_End(object sender, EventArgs e)
{
}
void Application_OnEnd(object sender, EventArgs e)
{
}
Please advise.
Go to the complete details ...