Error checking for Dataset values
How do i validate the entries to a dataset before updating the table.
DataSet changedData = dataSet11.GetChanges();
I cannot iterate through each row that has been added when i use the above statement. I tried using the foreach but its not accessible. Is there any other way to validate data input?
Thanks