Click here to Skip to main content
15,895,740 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I likt to use close event while closing my asp.net page, because there is a POSTBACK event on a Dropdownlist control in that page, when the page postback it will be closed.
onUnload event is just unload event ,not the closing event, I googled ,cant find result, can anyone who has this experience help me? or give me some suggestions.
Posted

1 solution

You have access to this event on client side with help of javascript :

http://www.w3schools.com/jsref/event_onunload.asp[^]

do some AJAX actions in your javascript evenet handler to notify the server.

The other way that may not help you is Session_End in Global.asax file. but if you need an immediate reaction the javascript event handler is very suitable.
 
Share this answer
 

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