Buscar..


Eventos del Ciclo de Vida

Los siguientes son los eventos del ciclo de vida de la página:

PreInit - PreInit es el primer evento en el ciclo de vida de la página. Comprueba la propiedad IsPostBack y determina si la página es una devolución de datos. Establece los temas y las páginas maestras, crea controles dinámicos y obtiene y establece valores de propiedades de perfil. Este evento se puede controlar anulando el método OnPreInit o creando un controlador Page_PreInit.

Init : el evento Init inicializa la propiedad de control y se construye el árbol de control. Este evento se puede controlar anulando el método OnInit o creando un controlador Page_Init.

InitComplete : el evento InitComplete permite el seguimiento del estado de vista. Todos los controles activan el seguimiento de estado de vista.

LoadViewState : el evento LoadViewState permite cargar información de estado de vista en los controles.

LoadPostData : durante esta fase, se procesan los contenidos de todos los campos de entrada con la etiqueta.

Carga previa : la carga previa se produce antes de que se carguen los datos de la respuesta posterior en los controles. Este evento se puede controlar anulando el método OnPreLoad o creando un controlador Page_PreLoad.

Cargar : el evento Cargar se genera para la página primero y luego recursivamente para todos los controles secundarios. Se crean los controles en el árbol de control. Este evento se puede controlar anulando el método OnLoad o creando un controlador Page_Load.

LoadComplete : el proceso de carga se completa, los controladores de eventos de control se ejecutan y se lleva a cabo la validación de la página. Este evento se puede controlar anulando el método OnLoadComplete o creando un controlador Page_LoadComplete

PreRender : el evento PreRender se produce justo antes de que se genere la salida. Al manejar este evento, las páginas y los controles pueden realizar cualquier actualización antes de que se genere la salida.

PreRenderComplete : como el evento PreRender se activa recursivamente para todos los controles secundarios, este evento garantiza la finalización de la fase de representación previa.

SaveStateComplete : se guarda el estado de control de la página. Se guarda la personalización, el estado de control y la información de estado de vista. Se genera el marcado HTML. Esta etapa se puede manejar anulando el método Render o creando un controlador Page_Render.

UnLoad : la fase UnLoad es la última fase del ciclo de vida de la página. Aumenta el evento UnLoad para todos los controles de forma recursiva y, por último, para la propia página. Se realiza la limpieza final y se liberan todos los recursos y referencias, como las conexiones de base de datos. Este evento se puede controlar anulando el método OnUnLoad o creando un controlador Page_UnLoad.

Ejemplo de código

using System;

namespace myProject
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        public string PageSteps = string.Empty;

        //Raised after the start stage is complete and before the initialization stage begins.
        protected void Page_PreInit(object sender, EventArgs e)
        {
            PageSteps += "1 - Page_PreInit<br>";

            //Access to page Controls not available in this step
            //Label1.Text = "Step 1";
        }

        //Raised after all controls have been initialized and any skin settings have been applied.
        //The Init event of individual controls occurs before the Init event of the page.
        protected void Page_Init(object sender, EventArgs e)
        {
            PageSteps += "2 - Page_Init<br>";

            Label1.Text = "Step 2";
        }

        //Raised at the end of the page's initialization stage.
        //Only one operation takes place between the Init and InitComplete events: tracking of view state changes is turned on.
        //View state tracking enables controls to persist any values that are programmatically added to the ViewState collection.
        //Until view state tracking is turned on, any values added to view state are lost across postbacks.
        //Controls typically turn on view state tracking immediately after they raise their Init event.
        protected void Page_InitComplete(object sender, EventArgs e)
        {
            PageSteps += "3 - Page_InitComplete<br>";

            Label1.Text = "Step 3";
        }

        //Raised after the page loads view state for itself and all controls, and after it processes postback data that is included with the Request instance.
        protected override void OnPreLoad(EventArgs e)
        {
            PageSteps += "4 - OnPreLoad<br>";

            Label1.Text = "Step 4";
        }

        //The Page object calls the OnLoad method on the Page object, and then recursively does the same for each child control until the page and all controls are loaded.
        //The Load event of individual controls occurs after the Load event of the page.
        protected void Page_Load(object sender, EventArgs e)
        {
            PageSteps += "5 - Page_Load<br>";

            Label1.Text = "Step 5";
        }

        //Use these events to handle specific control events, such as a Button control's Click event or a TextBox control's TextChanged event.
        protected void btnSubmit_Click(object sender, EventArgs e)
        {
            //Step only visible on PostBack
            PageSteps += "6 - btnSubmit_Click<br>";

            Label1.Text = "Step 6";
        }

        //Raised at the end of the event-handling stage.
        protected void Page_LoadComplete(object sender, EventArgs e)
        {
            PageSteps += "7 - Page_LoadComplete<br>";

            Label1.Text = "Step 7";
        }

        //Raised after the Page object has created all controls that are required in order to render the page, including child controls of composite controls.
        //(To do this, the Page object calls EnsureChildControls for each control and for the page.)
        protected override void OnPreRender(EventArgs e)
        {
            PageSteps += "8 - OnPreRender<br>";

            Label1.Text = "Step 8";
        }

        //Raised after each data bound control whose DataSourceID property is set calls its DataBind method.
        protected override void OnPreRenderComplete(EventArgs e)
        {
            PageSteps += "9 - OnPreRenderComplete<br>";

            Label1.Text = "Step 9";
        }


        //Raised after view state and control state have been saved for the page and for all controls.
        //Any changes to the page or controls at this point affect rendering, but the changes will not be retrieved on the next postback.
        protected override void OnSaveStateComplete(EventArgs e)
        {
            PageSteps += "10 - OnSaveStateComplete<br><hr><br>";

            Label1.Text = "Step 10";
        }

        // Render
        //This is not an event; instead, at this stage of processing, 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 to send to the browser.

        //Raised for each control and then for the page.
        //Controls use this event to do final cleanup for specific controls, such as closing control-specific database connections
        protected void Page_UnLoad(object sender, EventArgs e)
        {
            //This last PageSteps addition will not be visible on the page
            PageSteps += "11 - Page_UnLoad<br>";

            //Access to page Controls not available in this step
            //Label1.Text = "Step 11";      
        }
    }
}

Agregue el siguiente código a la página .aspx para visualizar los Pasos en el Ciclo de Vida.

<b>Page Life Cycle Visualization:</b>
<br />
<%= PageSteps %>

introduzca la descripción de la imagen aquí

Más información



Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow