Page_Init -> During this phase, the server creates an instance of the server control. i.e. various controls are intialised to default values. but viewstate doesn't exists. ViewState Load method -> Loads viewstate object. Load postback Data -> Loads the data posted back incase of isPostback is true. Page_Load () -> During this phase, the instance of the control is loaded onto the page object in which it is defined Pre_Render () -> During this phase, the control is updated with the changes made to it. This prepares the control for rendering. Save () -> During this phase, the state information of the control is saved. For example, if a value is set for the control during the Load event, it is embedded in the HTML tag that will be returned to the browser. SaveViewState ()-> Viesstateinformation is saved. Rendering ()-> During this phase, the server creates the corresponding HTML tag for the control. Disposing ()-> During...