4
Reply

What methods are fired during the page load?

partap mehra

partap mehra

Aug 11, 2006
14.1k
0

    Below are the Events/Method after Page_PreRender

    View State Saving

    SaveViewState

    Page Rendering

    Page_Render

    Page Unloading

    Page_UnLoad



    Sanjay Subramanya
    August 17, 2006
    0

    Stages and corresponding events in the life cycle of the ASP.NET page cycle:

    Stage

    Events/Method

    Page Initialization

    Page_Init

    View State Loading

    LoadViewState

    Postback data processing

    LoadPostData

    Page Loading

    Page_Load

    PostBack Change Notification

    RaisePostDataChangedEvent

    PostBack Event Handling

    RaisePostBackEvent

    Page Pre Rendering Phase

    Page_PreRender

    Sanjay Subramanya
    August 17, 2006
    0

    i just would like to add one more important thing viewstate is available after init() and before load() method

    jassi chauhan
    August 17, 2006
    0

    Following methods are executed when the page is loaded:

    1. Init() - when the page is instantiated
    2. Load() - when the page is loaded into server memory
    3. PreRender() - the brief moment before the page is displayed to the user as HTML
    4. Unload() - when page finishes loading. 

    partap mehra
    August 11, 2006
    0