If I add an event to my control in the markup, eg in and EntityDataSource add a OnUpdating, how can I find the method parameter list?
eg how do I know to put in
(object sender, EntityDataSourceChangingEventArgs e)
instead of
(object sender, EventArgs e)
In a FormView OnDataBinding event is there a more specific EventArgs class than
(object sender, EventArgs e)