Where in the page life cycle is it most appropriate to set event handler delegates for events raised by custom User Controls?
I have a ReportFilter
user control that raises an ApplyFilterClicked
event. Currently I am just using Page_Load
to assign a handler method.
reportFilter.ApplyFilterClicked += reportFilter_ApplyFilterClicked;