Hi,
I have a situation where the end_session event runs immediately after the start_session event.
I know that this is a documented fault for versions 3.5 of the .net framework but I'm running version 4.0 of the framework.
In my global.asax I do the following:
session_start:
1) Get userId from session
2) Add a record to a table to indicate the user is online
session_end:
1) Get userId from session
3) Delete a record from the online table (this can happen when the session times out as it is simply a cleanup routine).
Both are firing back to back, the net result being an empty table.
Although I'm running VS2010 Pro, I'm unfortunately using SQL Express/XP Home on this machine if this makes a difference.
Any advice would be appreciated.
Thanks
John
...
Go to the complete details ...