2
Answers

Asp.Net Page Life Cycle

The second step in Asp.Net page Life Cycle is Init. In this Step I Read a line " The "Init" event is fired first for the bottom-most control in the hierarchy, and then fired up the hierarchy until it is fired for the page itself."
I don't Know What is mean of "bottom-most control in the hierarchy"  can anyone Explain the Meaning of This.
 
The Url is "http://www.c-sharpcorner.com/UploadFile/8911c4/page-life-cycle-with-examples-in-Asp-Net/"

Answers (2)

0
Photo of Prasham Sabadra
NA 17.6k 1.2m 10y
Hi,

This means that,  initialization events are raised from the innermost control to the outermost one, and all other events are raised from the outermost control to the innermost one

https://msdn.microsoft.com/en-us/library/dct97kc3(v=vs.140).aspx 

0
Photo of rajat kumar
NA 41 3.1k 10y


A page with two labels, two text boxes, and a button has the above shown control hiearchy.

Hope this can help you understand the 
hiearchy.