views:

89

answers:

2

which is the earliest event when child control exists ?

A: 

Control_Init event.

J.W.
+1  A: 

In page lifecycle you can use OnInit as the earliest event.

but if you mean the earliest event that you can access the child controls,

Call EnsureChildControls method at the beginning of the event, then you can access the child controls of the control. If child controls are not initiated, it simply calls the CreateChildControls methods, and initiates them.

Canavar