modularbeing Posted March 18, 2004 Posted March 18, 2004 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. Quote
Administrators PlausiblyDamp Posted March 18, 2004 Administrators Posted March 18, 2004 Page_Unload will be the last event to fire. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
modularbeing Posted March 18, 2004 Author Posted March 18, 2004 I forgot to mention I have to store some information in a hidden field on the page, I think unload it post render? Quote
Moderators Robby Posted March 18, 2004 Moderators Posted March 18, 2004 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. Quote Visit...Bassic Software
tonyf Posted March 19, 2004 Posted March 19, 2004 You can also use the page_prerender, which is the last event to run before anything is written to the page!! Quote Everything is possible!!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.