A
ad
I have a DataTable like
StID SchoolYear Score
----------------------------------
1 2003 95
1 2004 96
2 2005 97
I want to update the DataRow of (1,2004,96) to (1,2004,80)
How can I do?
StID SchoolYear Score
----------------------------------
1 2003 95
1 2004 96
2 2005 97
I want to update the DataRow of (1,2004,96) to (1,2004,80)
How can I do?