ADO.NET 2.0 Question:

How to identify the updated rows in a dataset?

Answer:

If the RowState property of the DataRow is "Modified" then that DataRow can be treated as updated.

If dr.RowState=DataRowState.Modified then
' u r logic here
End if

Read All 14 ADO.NET 2.0 Questions
Previous QuestionNext Question
What is difference between ado and ado.net?What is difference in Record set and Dataset?