Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanted to know when the browser is closed at server side in asp.net 2.0. How to detect in code behind?

share|improve this question

5 Answers

up vote 2 down vote accepted

client side script:

< body onbeforeunload="window.open('http://www.website.com/browserclosed.aspx','mywindow','width=1,height=1');">

server side script (browserclosed.aspx):

// page_load

int userId = Convert.ToInt32(request.session("userId"));
ReportBrowserClosed(userId);
// Do what you want in ReportBrowserclosed() method
share|improve this answer

Short answer: you can't do that directly since http is stateless. Perhaps you can use some AJAX hearbeat pooling, session timeout detection and other tricks.

Take a look at this question for more explanation and ideas. This is Java based, but ideas are language agnostic.

share|improve this answer

The first thing that comes to mind is that you hook the unload event and just asynchronously post back that the browser navigated away from your site (closed the window). However, the way that HTTP is being used to build stateless web sites makes this infeasible. You just don't have a reliable way of tracking user connectivity.

Just consider how would you handle multiple sessions? If I have the same site open in many and several, tabs or windows and close down all but one how do you tell that I'm still connected? And for the fun of it, say that my browser crashed somewhere there in between.

The thing is, I could design something that would sort of solve your problem. However, it's never going to be reliable because HTTP doesn't have a built-in control mechanism for connectivity.

I have to answer this question, with a follow up question. Why do you need to know when the browser window closes?

If you need to do some resource clean up there's two server side events, facilitated by ASP.NET that you could use more reliably. And that's Session_End or Application_End.

share|improve this answer
I can't answer for the OP, but one common reason to do this is to stop a long-running operation (query, report generation, etc.) when the user gives up and closes their browser. – Gabe Dec 10 '10 at 7:19

How to trap browser close event in SERVER side?

http://bytes.com/topic/asp-net/answers/294951-how-trap-browser-close-event-server-side

share|improve this answer

The quite obvious question is why do you need this? Do you want to store logout time or closing time? Then its better to catch in session timeout. Do you want to redirect some other page then its better to catch in page unload event of javascript.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.