Hi All, I have different modules in my website and need to track how many times the user has visited each tab or module. Currently, I'm using Session variables to store the value and incrementing the counters on each visit on page_load event of the page and loading everything in the database on Session_End event. This seems to work when the user logs off from the application. But it doesn't seem to work when the user closes the browser or redirect to a different site. I thought the Session_End event would fire, no matter what, after the session time out period even if the browser is closed, but it doesn't seem to behave that way. Can anyone suggest a solution to implement this?
Thanks.