tags:

views:

71

answers:

2

is there any way to find the browser close event in asp.net

+1  A: 

you can use Javascript for that.

document.unLoad()
Shoban
+1  A: 

For client side event: use unload event.

For server side event:

  1. Use unload event to make an Ajax call to the server.
  2. Use the session_end event. (I not sure how much this feature is trusted).
Mendy
thanks for reply unload event is working fine