How to identify the updated rows in a dataset?

Submitted by: Administrator
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
Submitted by: Administrator

Read Online ADO.NET 2.0 Job Interview Questions And Answers