I am last year MCA student. Currently I am learning ASP.net programming language. Before starting any test project I want to know that what methods are fired during page load. Please reply me as soon as possible. Thank you.
I am last year MCA student. Currently I am learning ASP.net programming language. Before starting any test project I want to know that what methods are fired during page load. Please reply me as soon as possible. Thank you.
Init() - when the page is instantiated
Load() - when the page is loaded into server memory
PreRender() - the brief moment before the page is displayed to the user as HTML
Unload() - when page finishes loading.
• Page request - determines if it requires to be lifted or compiled
• start - if it is a new request or post back
• Page initialization -
• Load - if postback, control properties are loaded with Values of postback
• validation - every controls are validated
• Postback - event handling
• render - saves the view state data before rendering
• unload
Bookmarks