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/"

Prasham SabadraPosted Feb 23, 2015, 7:32 AM
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
rajat kumarPosted Feb 23, 2015, 7:20 AM
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.