My code is below :
foreach (DataRow dr in dt.Rows)
{
if(dr["Name"]=="")
{
dr.Delete();
}
dtr.AcceptChanges();
}
If any idea give please.Or may be there are another way.
VulpesPosted Apr 11, 2013, 10:34 AM