Hi,
I am binding radgrid from code behind using a dataset.
Grid1.DataSource= MyDataSet;
Grid1.DataBind();
Now, when i update/delete or inset a new record, i want to retrieve the updated DataSet back. What's the best way to do it?
I want something
Grid1_InsertCommand(....)
{
DataSet MyNewDS= Grid1.GetUpdatedDataSet();
}
I want to do a batch update of DataSet in the database, not on every insert command.
Thanks.
I am binding radgrid from code behind using a dataset.
Grid1.DataSource= MyDataSet;
Grid1.DataBind();
Now, when i update/delete or inset a new record, i want to retrieve the updated DataSet back. What's the best way to do it?
I want something
Grid1_InsertCommand(....)
{
DataSet MyNewDS= Grid1.GetUpdatedDataSet();
}
I want to do a batch update of DataSet in the database, not on every insert command.
Thanks.