User Manual

Programming Basics
Page Unloading
๎‚Š Page_Unload fires after the page is rendered
๎‚„ Donโ€™t try to add to output
๎‚Š Useful for logging and clean up
protected void Page_Unload(Object s, EventArgs e) {
MyApp.LogPageComplete();
}