Last event to fire

modularbeing

Regular
Joined
Jan 8, 2004
Messages
63
I need to execute some code after all of the other code in the application has processed, I was wondering what event fires just before the page is rendered and sent to the client? Im leaning towards the page_Load event and make sure its the last piece of code in that sub.
 
You can do that towards the end of your page load event. And yes Unload is post Render since as PD pointed out it's the last event.
 
Back
Top