G
Guest
DataTable orders;
getSqlData(orders);
for (i = 0; i < orders.Rows.Count; i++)
{
orders.Rows[8] = 800;
}
orders.AcceptChanges();
ExcelView.DataSource = orders;
ExcelView.DataBind();
How can I get a gridview control to accept my changes?
getSqlData(orders);
for (i = 0; i < orders.Rows.Count; i++)
{
orders.Rows[8] = 800;
}
orders.AcceptChanges();
ExcelView.DataSource = orders;
ExcelView.DataBind();
How can I get a gridview control to accept my changes?