Capture the event of closing IE

  • Thread starter Thread starter Uma Muthu
  • Start date Start date
U

Uma Muthu

Hello Everyone,

How can I capture the event of closing the IE browser from within an ASP.NET
web application?

TIA,
Uma
 
The only thing I could think of is using JavaScript to detect the window
closing and then have the JavaScript fire a server side event. I haven't
done this before so I am giving you some ideas. Try looking up now to fire
server side code from JavaScript and then the client side code for javascript
should be pretty easy to find to detect a window closing. Hope this helps
 
there is no foolproof method sort of providing your own browser. the browser
does not fire a close event that can be captured. you can get the page
unload, but this fires on every navigation.

-- bruce (sqlwork.com)


| Hello Everyone,
|
| How can I capture the event of closing the IE browser from within an
ASP.NET
| web application?
|
| TIA,
| Uma
|
|
 
Hi Uma,

Below is a reply I've posted in the past on this topic. Ken.

Hi,

As others have said this is a tricky issue. The odds of you getting a
succesful postback are 50/50 to say the best. I've had about a 95% success
rate doing this:

1. Capture the onbeforeunload event in your body tag.
2. Incorporate the WebService.htc.
3. When the onbeforeunload event fires run a function that uses the
WebService.htc to tell a web service.

The browser will close before you get a response back but, about 95% of the
time, your web service will get hit and the user can successfully be logged
out. Note, that using the latest IE and Windows XP you will achieve almost
100% results. This is sort of complicated until you get the hang of it. If
this isn't something you want to try then here is another suggestion to
improve your chances but it might seem clunky to the user:

Have a main page that the user browses to. To run your app, they click a
button or link and then you use window.open() to create a new browser
window. This is the window your app runs from. Don't ask me why, but the
success rate of a postback from onbeforeunload seems to be much higher for
browsers launched from javascript than from browsers launched by the user.
Good luck! Ken.
 
Back
Top