473,473 Members | 1,805 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Capture the Browser Close event

I need to capture the event when the user closes the browser in my
application. I have some code in the session_End event, which works fine
when the session times out, but I need to end the session immediately when
the user closes the browser.

Does anyone know a way of doing this?

--
Thanks,

Bill Manring

Nov 19 '05 #1
4 4784
Hi Bill,

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.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Bill Manring" <Bi*********@discussions.microsoft.com> wrote in message
news:46**********************************@microsof t.com...
I need to capture the event when the user closes the browser in my
application. I have some code in the session_End event, which works fine
when the session times out, but I need to end the session immediately when
the user closes the browser.

Does anyone know a way of doing this?

--
Thanks,

Bill Manring

Nov 19 '05 #2
Ken,

Thanks for the response. It turns out that my application already works the
way you suggested, with the app started from javascript, so your idea seems
to work. Everything would be fine except for the fact that the Session_Start
event seems to fire twice. I tried starting the main page directly, not
using the javas script but the Session_Start event still fires twice.

I am trying to keep track of the number of users logged in to our
application for purposes of enforcing a "concurrent user" license model. I
didn't want to wait until the session timed out to decrement the active user
count, which I am storing in a database. If I rely on the Session_Start
event to increment the user count, I am incrementing the count by two, which
is of course not desirable.

Any ideas on why the Session_Start event fires twice?

"Ken Dopierala Jr." wrote:
Hi Bill,

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.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Bill Manring" <Bi*********@discussions.microsoft.com> wrote in message
news:46**********************************@microsof t.com...
I need to capture the event when the user closes the browser in my
application. I have some code in the session_End event, which works fine
when the session times out, but I need to end the session immediately when
the user closes the browser.

Does anyone know a way of doing this?

--
Thanks,

Bill Manring


Nov 19 '05 #3
Hi Bill,

Do your users need to log in? If so, are you using Forms or Windows
authentication? If you do then you could update a date/time field in your
database each time you authenticate them in the Application_BeginRequest.
Then you could write a query to automatically set people as logged off when
they are inactive for a set number of minutes. I have web apps that track
online users like you but all of my apps use client-side scripting to
constantly hit the server behind the scenes every couple of seconds to prove
that they are still online. This requires javascript to be enabled in the
browser. Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Bill Manring" <Bi*********@discussions.microsoft.com> wrote in message
news:A0**********************************@microsof t.com...
Ken,

Thanks for the response. It turns out that my application already works the way you suggested, with the app started from javascript, so your idea seems to work. Everything would be fine except for the fact that the Session_Start event seems to fire twice. I tried starting the main page directly, not
using the javas script but the Session_Start event still fires twice.

I am trying to keep track of the number of users logged in to our
application for purposes of enforcing a "concurrent user" license model. I didn't want to wait until the session timed out to decrement the active user count, which I am storing in a database. If I rely on the Session_Start
event to increment the user count, I am incrementing the count by two, which is of course not desirable.

Any ideas on why the Session_Start event fires twice?

"Ken Dopierala Jr." wrote:
Hi Bill,

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.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Bill Manring" <Bi*********@discussions.microsoft.com> wrote in message
news:46**********************************@microsof t.com...
I need to capture the event when the user closes the browser in my
application. I have some code in the session_End event, which works fine when the session times out, but I need to end the session immediately when the user closes the browser.

Does anyone know a way of doing this?

--
Thanks,

Bill Manring


Nov 19 '05 #4
Ken,

The users do login, when the application is isntalled they decide whether
they want to use Windows authentication or Forms authentication. I will
consider another stategy - keeping a table of logged in users in the
database. This might allow the possibility of users "sharng" a common login
to circumvent the license restriction, but maybe I'll live with that. I'll
give it some more thought.

Thanks for your help.

"Ken Dopierala Jr." wrote:
Hi Bill,

Do your users need to log in? If so, are you using Forms or Windows
authentication? If you do then you could update a date/time field in your
database each time you authenticate them in the Application_BeginRequest.
Then you could write a query to automatically set people as logged off when
they are inactive for a set number of minutes. I have web apps that track
online users like you but all of my apps use client-side scripting to
constantly hit the server behind the scenes every couple of seconds to prove
that they are still online. This requires javascript to be enabled in the
browser. Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Bill Manring" <Bi*********@discussions.microsoft.com> wrote in message
news:A0**********************************@microsof t.com...
Ken,

Thanks for the response. It turns out that my application already works

the
way you suggested, with the app started from javascript, so your idea

seems
to work. Everything would be fine except for the fact that the

Session_Start
event seems to fire twice. I tried starting the main page directly, not
using the javas script but the Session_Start event still fires twice.

I am trying to keep track of the number of users logged in to our
application for purposes of enforcing a "concurrent user" license model.

I
didn't want to wait until the session timed out to decrement the active

user
count, which I am storing in a database. If I rely on the Session_Start
event to increment the user count, I am incrementing the count by two,

which
is of course not desirable.

Any ideas on why the Session_Start event fires twice?

"Ken Dopierala Jr." wrote:
Hi Bill,

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.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Bill Manring" <Bi*********@discussions.microsoft.com> wrote in message
news:46**********************************@microsof t.com...
> I need to capture the event when the user closes the browser in my
> application. I have some code in the session_End event, which works fine > when the session times out, but I need to end the session immediately when > the user closes the browser.
>
> Does anyone know a way of doing this?
>
> --
> Thanks,
>
> Bill Manring
>


Nov 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Derek | last post by:
Hello: I want to capture the event when a browser is closing, to give to the user the posibility of close or no this browser. When the browser is closing, this show a confirm window with two...
3
by: Marcia Gulesian | last post by:
How can I capture the event when I click (focus) with the cursor anywhere in the page (that is, on a component or elsewhere). This event would occur in an I.E 5.5 or later browser.
4
by: feng | last post by:
Hi, In our asp.net app, we need to capture the event when user close the browser window by clicking on the "x" button. But it doesn't seem to be as easy as it sound. Can someone show me how to...
5
by: Uma Muthu | last post by:
Hello Everyone, How can I capture the event of closing the IE browser from within an ASP.NET web application? TIA, Uma
1
by: Feng | last post by:
Hi, Need help on the following issue. We need to clean up some session specific backend resource when a user ends his session. We have a "Logoff" button on the pages that handles that. But...
6
by: hemant.singh | last post by:
Hi all, I am trying to get a way by which I'll know exactly when user goes out of my site by clicking on close button in browser, So that w/e user click close button in browser, I can send a...
1
by: karthik juneni | last post by:
Hi all, Iam trying to capture windows closing event (i.e) when the user clicks on the "X" button i want to capture that event and want to update some values in the database.I tried two methods...
1
by: destiny007 | last post by:
can any one help me to write code to capture selected text from a page but problem is that i am not able to decide where to call the functio.in this case the function is called in all cases of mouse...
4
by: mbatestblrock | last post by:
I hope this makes some sense. My ultimate goal here is to execute a block of code if the mouse has not moved in a minute or so within the broswer. The machine I am running this on is for internal...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.