what is asp.net lifecycle and what is namespace
what is namespace
Collapse
X
-
Tags: None
-
The ASP.NET Life Cycle is the stages that the asp.net page code is executed in every request.
When a request for an aspx page is made the following steps happen in your page code:- Objects required to process the page are created and loaded with data
- The Page Load event occurrs
- Page validation occurrs
- Any postback event code is executed (eg button click events or drop down list selected index changed events...etc)
- The PreRender event is fired (this is your last chance to access the controls on your page)
- The Render event is fired (all of the controls are rendered as HTML and the response is sent to the browser)
- The Unload event occurrs: all of the objects are destroyed.
Check out this MSDN article about Understanding and Using Assemblies and Namespaces in .NET for more information about namespaces.
-FrinnyComment
Comment