Hello,
I am trying to update a column in my datarow / dataset but it will not set the value!
foreach (DataRow dr in ds.Tables["PrintlogFile"].
Rows) //table name
{
dr.BeginEdit();
dr.ItemArray[6] = "test"; // edit column
dr.EndEdit();
}
Any ideas why the old value sticks and will not update with the new?
Thanks
Start Free Trial