A Page Exit Routine for ASPX page.
-
;)I am looking for an routine in an ASPX web page that is called when the user leaves the page or the page closes or the page "unloads". This would be the opposite of Page_Load or Page_PreRender where these are called when the page first loads up. I am using C# .Net ASP. Thank you, Paul Paul
-
;)I am looking for an routine in an ASPX web page that is called when the user leaves the page or the page closes or the page "unloads". This would be the opposite of Page_Load or Page_PreRender where these are called when the page first loads up. I am using C# .Net ASP. Thank you, Paul Paul
Have you tought of using the
Unload
event of the page? For more info check this out: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWebUIControlClassUnloadTopic.asp[^] ~Javier Lozano