admin管理员组文章数量:1339459
I have Example and i need to kill the session when user close his browser window. i tried page_unload() not working. the example is:i have parent windows and window will open from it i need to delete session when user close the child window. please i need some help.
I have Example and i need to kill the session when user close his browser window. i tried page_unload() not working. the example is:i have parent windows and window will open from it i need to delete session when user close the child window. please i need some help.
Share Improve this question edited May 13, 2018 at 16:48 Stephen Kennedy 21.6k24 gold badges97 silver badges112 bronze badges asked Nov 4, 2009 at 17:57 Amr ElnasharAmr Elnashar 1,76913 gold badges33 silver badges53 bronze badges 1- duplicate stackoverflow./questions/920042/… stackoverflow./questions/287022/… – Jeeva Subburaj Commented Nov 4, 2009 at 18:03
6 Answers
Reset to default 10This is not something that's provided for in the normal web http protocol. There's no real way to know for sure when the browser closes; you can only "sort of" know. You have to throw together an ugly hack to get any level of certainty and even then it's bound to fail in plenty of edge cases or cause nasty side effects.
The normal work-around is to send ajax requests at intervals from the browser to your server to set up a sort of "heartbeat". When the heartbeat stops, the browser closed and so you kill the session. But again: this is a horrible hack. In this case, the main problems are that it's easy to get false positives for a failed heartbeat if the server and client to get out of sync or there's a javascript error, and there's a side effect that your session will never expire on it's own.
You can do this with an window.onbeforeunload handler that posts back to a sign out page.
function CloseSession( )
{
location.href = 'SignOut.aspx';
}
window.onbeforeunload = CloseSession;
This is the duplication question.. chk out here
Closing the browser should actually clear the session variables an ASP session id
https://stackoverflow./questions/920042/kill-server-side-session-on-browser-window-close-closed
Unfortunately this is not possible. You can find examples on the web claiming that they can do that, but they are flawed sometimes in a very subtle way.
There is no consistent way to detect the browser closing through javascript. If you are concerned about having too many sessions hanging, reduce the session timeout on your server. If you do that you will also want to notify your users that they need to remain active in order not to lose any work.
If your client-side script sent an AJAX heartbeat to your server-side app, you might use a missing beat to close the session.
You have reference of all child windows in parent window you need onfocus to check for child windows so when your parent get focus check if child is there or not
本文标签: javascriptI want to detect when user close browser windowStack Overflow
版权声明:本文标题:javascript - I want to detect when user close browser window? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743588246a2506763.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论