Click here to Skip to main content
15,901,853 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can Anyone Help me to solve the Problem " to Log out the Account when the Browser is closed".
Posted

hi try this

XML
<script type="text/javascript">
                flag=true;
                window.onbeforeunload = function(){if(flag)return "Warning you are still logged in, are you sure?";};
               //call your logout function
            </script>
 
Share this answer
 
Comments
King Fisher 15-Jun-13 5:39am    
thank you..
Bojjaiah 17-Jun-13 6:27am    
Welcome :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900