Catching the closing browser event in the server side...

  • Thread starter Thread starter genc ymeri
  • Start date Start date
G

genc ymeri

Is anyway I can catch the event of client closing the browser in server side
(ASP.Net) ???

Thanks in advance,
Genc Ymeri.
 
The only way I know of is to use an AJAX method attached to the
window.unload event.


I second this thought.
 
There is absolutely no way to guarantee that this will work. Its better to
do work associated with a user leaving the webpage in the session_end event
handler of global.asax.
 
There is absolutely no way to guarantee that this will work...
Tthat's what I was questioning too....
 
Oh yea, there is definately no way to guarantee that you will catch
this event.

What if the browser crashs? What if the person has javascript turned
off?

What I meant is that doing the AJAX method is the only way you can even
try to get this event. How often will it work? 70-80-90%? Who knows.


But if it something that you NEED 100% on, then you are out of luck.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top