Search code examples
asp.netpage-lifecycle

When a button is clicked, will then button's event fire before page_load?


When an asp.net button is fired, will the button's event get fired before the page_load and init and pre_init events?


Solution

  • http://msdn.microsoft.com/en-us/library/ms178472.aspx

    Page_Load goes before event handlers.