|
How do i enter multiple rows in data grid and save them all at a time. -- Cerebrus --
If your Datagrid is associated (through the Datasource property) with a Dataset, then whatever you enter into the Datagrid will be immediately updated in the Dataset. So, all that is left to do (if you need to do it) is update that Dataset back to the database. Which is as simple as calling the DataAdapter.Update method. |