A GridView is a databound control that we generally used to show the records related to our interest.A gridView have a number of method,events as well as properties .We will mention some of these events. Events of a Gridview DataBinding---Occurs when the server control binds to a data control DataBound---Occurs after the server control bind to a data source. Disposed---Occurs when a server control is released from the memory,which is the last stage of the server control lifycycle when asp.net page is requested! Init---Occur when the server control is initialised.Which is the first step of the lifecycle. Load ---Occur when the server control is loaded into the page object PageIndexChanged--Occur when one of the pager button is clicked ,but after the gridview control handles the paging operation. PageIndexchanging----Occurs when one of the pager button is cliecked,but before the gridview control handles the paging operation. PreRender--- Occur after the control object is load...