Hello
I have a datagrid that is filled using the dataadapter. The datagrid that can be edited. Once the customer has completed the editing l want to update the new contents of the datagrid. This is what l have so far:
Many thanks in advance,Code:da.SelectCommand = cmd; da.Fill(ds,"Product"); this.grdCustomerPurchase.SetDataBinding(ds,"Product"); //How would l update the dataset once the customer has edited the contents of the datagrid
Steve




Reply With Quote