ASP. NET Page execution sequence: OnPreInit (), OnInit ()

Source: Internet
Author: User

When the page is sent back, if you click the button, all the above events will be re-executed. The execution order is as follows:
1. OnPreInit
2. OnInit
3. OnInitComplete
4. OnPreLoad
5. Page_Load
6. OnLoad
7. Button_Click
8. OnLoadComplete
9. OnPreRender
We can see that the Button_Click event is executed after OnLoad. You can test it:

public partial class TestControls : System.Web.UI.Page    {        static int count = 0;        protected void Page_Load(object sender, EventArgs e)        {            Response.Write(count+ "Page_Load <br />");            count++;        }        protected override void OnPreInit(EventArgs e)        {            base.OnPreInit(e);            Response.Write(count + "OnPreInit <br />");            count++;        }        protected override void OnInit(EventArgs e)        {            base.OnInit(e);            Response.Write(count + "OnInit <br />");            count++;        }        protected override void OnLoad(EventArgs e)        {            base.OnLoad(e);            Response.Write(count + "OnLoad <br />");            count++;        }        protected override void OnPreLoad(EventArgs e)        {            base.OnPreLoad(e);            Response.Write(count + "OnPreLoad <br />");            count++;        }        protected override void OnLoadComplete(EventArgs e)        {            base.OnLoadComplete(e);            Response.Write(count + "OnLoadComplete <br />");            count++;        }        protected override void OnInitComplete(EventArgs e)        {            base.OnInitComplete(e);            Response.Write(count + "OnInitComplete <br />");            count++;        }       protected override void OnUnload(EventArgs e)        {            base.OnUnload(e);        }        protected override void OnDataBinding(EventArgs e)        {            base.OnDataBinding(e);            Response.Write(count + "OnDataBinding <br />");            count++;        }        protected override void OnPreRender(EventArgs e)        {            base.OnPreRender(e);            Response.Write(count + "OnPreRender <br />");            count++;        }        protected void btnGraphics_Click(object sender, EventArgs e)        {            //Bitmap bmp = new Bitmap(10, 10);            //Graphics g = Graphics.FromImage(bmp);            Response.Write(count + "btnGraphics_Click <br />");            count++;        }    }

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.