views:

134

answers:

2

Is is possible to log when a session times out when a stateserver is used to manage session data?

+1  A: 

Yes you need to write your own httpmodule and maintain and list of sessions which timeout after a certain time period

keyoke
quick google search this might help http://aspalliance.com/520
keyoke
A: 

Try Session.IsNewSession.

KMan
This only tells you if the Session associated with the current Request has been newly created during this request. I think fARcRY is looking for a way to be notified when a Session dies.
Oliver