re:
> Unfortunatly, nothing happens on the server when the browser is closed.
Right.
re:
> I'm afraid that you can't close the session without waiting the timeout
> and the "Session_End" event.
You can programmatically call Session.abandon
to force the end of a session at any time.
That won't help Babu at all, but ending the session *can* be
done without the need to wait for the timeout or Session_End.
One way to persist session values, so they're restored the next
time the visitor returns, would be to dump the session values into
a cookie named with the SessionID. Each time you add a Session
variable, you add a cookie key with the variable's value.
When the user returns, reading the cookie would enable
you to set the same values to the current session.
Alternately, you could dump the session values into a db table,
using the SessionID as the key. Then, reading a simple cookie
set with a key name = SessionID would allow you to set the
current session values to the previous session values.
Why you'd want to do that beats me, but it's not too hard to do.
Juan T. Llibre
ASP.NET MVP
===========
"Lionel LASKE" <> wrote in message
news:...
>
> Unfortunatly, nothing happens on the server when the browser is closed.
> I'm afraid that you can't close the session without waiting the timeout
> and the "Session_End" event.
>
> Lionel.
>
>
> "news.microsoft.com" <> a écrit dans le message de
> news: ...
>> Hi everyone,
>>
>> I need some help (may be in the form of some sample code) for the subject
>> question.
>>
>> I have an ASP.NET/C# application. I need to do quite a few tasks when
>> the session ends. I don't want to depend on the session timeout factor
>> since it may end too soon or it may hang around too long. I can't find
>> any event that fires when the browser closes. The Session_End event
>> handler in the Global.asax does not execute until the timeout value
>> expires. Also, when it does execute the Session_end, it seems that the
>> session has already ended and so, I have no access to any of the session
>> variables I was holding onto.
>>
>> Can anybody tell me the server side sequence of events and their handlers
>> that get called when the user closes a browser? Does the browser inform
>> the server that it is closing, so that I can do my cleanup?
>>
>> Any help is highly appreciated.
>>
>> Babu.
>>
>>
>
>