Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > How to end a session when the user closes the browser?

Reply
Thread Tools

How to end a session when the user closes the browser?

 
 
news.microsoft.com
Guest
Posts: n/a
 
      02-01-2005
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.


 
Reply With Quote
 
 
 
 
Lionel LASKE
Guest
Posts: n/a
 
      02-01-2005

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.
>
>



 
Reply With Quote
 
 
 
 
news.microsoft.com
Guest
Posts: n/a
 
      02-01-2005
Thanks for the reply, Lionel. That was fast!

OK, then, is there another event that fires before the call to the
Session_End handler in the Global.asax? Because by the time the execution
arrives at this handler, I have no access to any of the Session variables
(It seems that the session has already been removed). If only I could find
an event that fires with the session state intact just before the session
closes.

Babu.

"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.
>>
>>

>
>



 
Reply With Quote
 
Juan T. Llibre
Guest
Posts: n/a
 
      02-01-2005
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.
>>
>>

>
>



 
Reply With Quote
 
Eliyahu Goldin
Guest
Posts: n/a
 
      02-01-2005
Babu,

You do have some limited possibilities. You can use
Response.IsClientConnected. Google for it to find out how it can help.

Eliyahu

"news.microsoft.com" <> wrote in message
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.
>
>



 
Reply With Quote
 
Kalyan Kumar
Guest
Posts: n/a
 
      02-01-2005

write session.RemoveAll()in the following code


Sub Application_End(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the application ends
Session.RemoveAll()
End Sub

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to detect that user closes the user-agent window ? Luke Matuszewski Javascript 8 12-02-2005 10:20 PM
Cancelling session when user closes browser window... Charlie@NISH ASP .Net 3 08-30-2005 08:00 PM
Trapping the <BODY> onUnload() / Detecting when a user closes the browser =B= ASP .Net 3 09-30-2004 08:20 AM
session not being killed after user closes browser Rafael Chemtob ASP General 4 02-12-2004 05:58 PM
server needs to know when user closes browser window feng ASP .Net 1 12-03-2003 06:54 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57