Looping through all rows of the DataTable
Posted on May 7, 2008 by dotnetfunda
Simply write
DataTable dTable = dSet.Tables[0];
foreach (DataRow row in dTable.Rows)
{
myValule = row["ColumnName"].ToString();
}
Filed under: Uncategorized
