K
Kim Bach Petersen
I would like to record user behavior data stored in session variables.
Since the data is modified throughout each session it seemed obvious to
store the data when the session terminates - using Session_End in
global.asax.
Problem is, apparently the session-object terminating cannot be accessed
from Session_End in global.asax!?
What's the meaning of Session_End if you don't know which session is
endning?
Sub Session_End(ByVal sender As Object, ByVal e As EventArgs)
' Store data from
' System.Web.HttpContext.Current.Session("behavior")
' in database
End Sub
Kim )
Since the data is modified throughout each session it seemed obvious to
store the data when the session terminates - using Session_End in
global.asax.
Problem is, apparently the session-object terminating cannot be accessed
from Session_End in global.asax!?
What's the meaning of Session_End if you don't know which session is
endning?
Sub Session_End(ByVal sender As Object, ByVal e As EventArgs)
' Store data from
' System.Web.HttpContext.Current.Session("behavior")
' in database
End Sub
Kim )