ASP Net Project Life Cycle

Every time an ASP.NET page runs it goes through a life cycle. This life cycle is comprised of many processing steps. These stages of the life cycle can be run to achieve your desired effect if the code is written properly.

  1. Page Request

    • Before the life cycle begins, the page request occurs. In this stage, ASP.NET determines whether the page should be compiled or parsed.

    Start

    • During this stage four things occur. The Response and Request page properties are set, the IsPostBack property is set if the request is a postback or a new request, and the UICulture property is set.

    Initialization

    • During the Initialization stage, page controls become available, the UniqueID is set, and themes and master pages are applied.

    Load

    • In the event the request is a postback, the load stage loads control properties.

    Postback Event Handling

    • In the event of a postback, this stage calls the control event handlers and validates the method of validator controls. Finally, this stage sets the IsValid property.

    Rendering and Unload

    • Prior to this stage, all controls are in a view state. During this stage, each control undergoes the render control method and output is written to the OutputStream. Unload is the last of the stages and occurs after rendering and after the page has been sent to the client. This stage includes the unloading of page properties and a cleanup.

Related Searches:

References

Comments

You May Also Like

  • Microsoft Solutions Framework Training

    Microsoft Solutions Framework (MSF) is a structured project management framework for managing large information technology (IT) projects. MSF includes a set of...

  • NASA Project Life Cycle Process Flow

    Created by NASA's Systems Engineering Process Improvement Team in 1993, the NASA Program/Project Life Cycle Process Flow is a description of NASA's...

  • Program Management Life Cycle

    A Project Management Life Cycle process is used to guide all stages of a project from the beginning to the end. The...

  • What Are the 5 Project Life Cycle Phases?

    All management projects follow a pattern known as the project life cycle. It includes five separate phases, including project initiation, project planning,...

  • Job Description: CRM Project Manager

    Customer relationship management (CRM) incorporates methodologies and technologies to manage a company's entire sales life cycle. Companies often hire CRM project ...

  • Life Cycle School Project Ideas

    Coming up with fun and creative ideas for school projects can be a real chore. If you are a student studying life...

  • How to Learn ASP.NET With C#

    An ASP.NET application includes an HTML form that is processed by the web server. When the application includes C# code, that code...

  • Phases of Project Life Cycles

    Phases of Project Life Cycles. Every successful project requires careful planning to ensure that demands for goods are all met in a...

Related Ads

Featured