custom server control event before Page_Load fired

  • Thread starter Thread starter Michal Valent
  • Start date Start date
M

Michal Valent

Hello,
I have noticed,
that some custom server controls are able fire its own events e.g.
someGrid_PageIndexChanged
before the Page_load event.

Can anybody explain how is it possible ?

According to the Microsoft .. Page Life Cycle articles,
Page events follows the order :
..
..
..
Page_Init
Page_Load
Control events (like Button_Click, someGrid_PageIndexChanged, ...)
..
..
..

thanks
mike
 
events that are triggered by data changes will fire when postback data
is applied to a control. this happens between oninit and onload.

-- bruce (sqlwork.com)
 
Can you tell what common control is doing so ?


bruce barker said:
events that are triggered by data changes will fire when postback data is
applied to a control. this happens between oninit and onload.

-- bruce (sqlwork.com)
 
Back
Top