Explain Page life cycle

Answer Posted / ish rastogi

PreInit
# Check the IsPostBack property to determine whether this
is the first time the page is being processed.

# Create or re-create dynamic controls.

# Set a master page dynamically.

# Set the Theme property dynamically.

# Read or set profile property values.

Init
Raised after all controls have been initialized and any
skin settings have been applied. Use this event to read or
initialize control properties.

InitComplete
Raised by the Page object. Use this event for processing
tasks that require all initialization be complete.

PreLoad
Use this event if you need to perform processing on your
page or control before the Load event.

Load
Use the OnLoad event method to set properties in controls
and establish database connections.

LoadComplete
Use this event for tasks that require that all other
controls on the page be loaded.

PreRender
The PreRender event occurs for each control on the page.
Use the event to make final changes to the contents of the
page or its controls.

SaveStateComplete
Use this event perform tasks that require view state to be
saved, but that do not make any changes to controls.

Render
This is not an event; instead, at this stage of rocessing,
the Page object calls this method on each control. All
ASP.NET Web server controls have a Render method that writes
out the control's markup that is sent to the browser.

Unload
This event occurs for each control and then for the page.
In controls, use this event to do final cleanup for pecific
controls, such as closing control-specific database connections.

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How many types of cookies are there in asp.net?

622


What is the application pool?

628


Will the asp.net validators run in server side or client side?

745


What is the difference between user control an custom control?

708


Define managed code and managed data in .net?

597






How to you can limit Access to Web API to Specific HTTP Verb?

766


Does asp.net still recognize the global.asa file?

640


Explain Areas in MVC?

725


What is the purpose of asp.net?

633


How would you get asp.net running in apache web servers? Explain it's limitations.

623


Tell me what is the request flow used for asp.net mvc framework? : asp.net mvc

635


Can you explain the importance of finalize method in .net?

693


What is difference between Lambda Expression and LINQ in ASP.NET?

617


Can you nest updatepanel within each other?

644


Are there resources online with tips on asp to asp.net conversions?

640