I Ignacio Machin \( .NET/ C# MVP \) Jun 14, 2004 #2 Hi, Are you meaning something like this: StringBuilder sb = new StringBuilder() foreach( DataRow row in table.Rows ) sb.append( row["ColumnName"] ); // You may also use row["ColumnName"].ToString() if you have to. Cheers,
Hi, Are you meaning something like this: StringBuilder sb = new StringBuilder() foreach( DataRow row in table.Rows ) sb.append( row["ColumnName"] ); // You may also use row["ColumnName"].ToString() if you have to. Cheers,