I realize you can declaratively assign an event handler to a child control inside a formview by adding its attribute on the aspx page (i.e. onclick="Button_Click"), but if I wanted to do this programmatically, how would I go about it? That control isn't going to be found through FormView.FindControl in the Page's Init or Load events, so it can't be assigned in those stages. The DataBound event of the FormView will allow you to find the control, but is inappropriate, since that only happens once, and then the event won't always be bound, and it won't fire. I'm not asking because I can't get around it, I just wanted to know how it could be done.
Cheers.