I actually want to display total number of users online.
For this i had created an application variable in global.asax. On session start I had incremented it by one and on session end i had decreamented it by one.
application variable is getting increased by 1 after opening the browser.
Problem is app variable is not decreased by 1 after closing the browser. It was decreased by 1 only when session expires(depending on expire time ). But i want to decrease this app variable immediately after closing browser.
Please tell me solutions to this probem.
Thanks in advance.