Posted on: 10/14/2014 6:25:40 AM | Views : 847

Hi I am busy porting an access app to c# asp.net and have written a class so that the database access is handled by the class so that when we move to SQL it will require small changes to do so. In the project there is a repair management system that we have that allows users to CRUD a list of repairs. I have used an ObjectDataSource in most of the other web forms and it works fine. In this case the Update routine is not being called at all. I added an OnUpdating even and that is being called, but update is not being called. according the http://msdn.microsoft.com/en-us/library/bb332383.aspx the update should be called after the OnUpdating. 
The webform uses a DetailsView to display the data. on a GridView you can disable validation using CausesValidation and that helps diagnose a problem (normally a null item), but in this case I cannot do that.
I am getting no errors to guide me ...

Go to the complete details ...