I m not able to update Database through DataGrid.I am working in VB.Net .I can retrieve the Data but could not update the data through datagrid.Please help me.
I m not able to update Database through DataGrid.I am working in VB.Net .I can retrieve the Data but could not update the data through datagrid.Please help me.
have u tried anything.....if yes,let us know.....
you have to iterate through the grid in a loop and execute the updation....
Yes I did as follows,
Dim dtChanged As DataTable
dtChanged = ds.Tables("ordr et_d").GetChang es()
da.Update(dtCha nged)
ds.Tables("ordr et_d").AcceptCh anges()
Comment