> 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?
What's the meaning of a brake pedal on a car if every car on the road has
one? The answer is, the brake pedal in the car you're driving is yours.
There is one Session per client. When Session_End is called, it is called
for that client. It is the brake pedal on that client's car. It can't
operate on any other client, any more than pressing your brake pedal can
slow down anyone else's car but yours.
--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
"Kim Bach Petersen" <> wrote in message
news:...
> 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
)
>
>