Pages

Men

rh

7/18/2013

How can i identify the updated rows in a dataset?

Using  RowState Property of the DataRow.

if(dr.RowState = DataRowState.Modified)
{
 -- Code....
}

No comments :

Post a Comment