Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1325
Update problem using dataset
posted

We use the Add/Update/Delete/Paging/Sorting/Filtering features using DataSset for the WebDataGrid.

protected void WebDataGrid1_RowUpdated(object sender, Infragistics.Web.UI.GridControls.RowUpdatedEventArgs e)

 {

 IDPair id = e.RowID;

GridRecord row = this .WebDataGrid1.Rows.FromIDPair(id);

 //update the row in the database

}

Can You please give the code for update the row into the database.I didn't know how we get the column values.Please Help..........