- RowUpdated handler does not fire
- UpdateMethod in DataSource does not fire
- GridViewUpdateEventArgs empty in the RowUpdating handler
Solution:
- Check that your DataSourceControl has been added to the page controls. (ej. Panel1.Controls.Add(objectdatasource);
- Bind your Datasource to the GridView with: Gridview.DataSourceId = datasource.Id;
- Do NOT bind your DataSource to the GridView using: Gridview.Datasource = datasource;