- sender
- The System.Web.UI.Page that raised the event.
- e
- An EventArgs object that contains the event data.
The BaseDataBoundControl.OnPagePreLoad(object, EventArgs) event handler is used to control when data binding occurs within the life cycle of the page. It does this by setting the internal initialized state of the data-bound control. Because the control's initialized state is set during the System.Web.UI.Page.PreLoad phase of the page's lifecycle, the BaseDataBoundControl.OnDataPropertyChanged event handler is called any time a data property of the control is changed after that phase, to signal that the control must re-bind to its data before rendering.