nicks60610
MIS
I am trying to read through a number of rows/columns and extract the data in to text fields on a ASP.Net page;
This is what I have for the code going through each row, but I am stuck on the procedure to extract the data in to my text fields
For Each Row In myDataSet.Tables("[All PLants Summary Data]").Rows
Console.WriteLine(Row.Table.Columns.Item(1))
Console.WriteLine(Row.Table.Columns.Item(2))
Next Row
So I want Row1,Column 2 for my First Text Field
Row2,Column 2 for my Second Field
Row3,Column 3 for my Third field, and so on...
Any ideas at all are greatly appreciated...
This is what I have for the code going through each row, but I am stuck on the procedure to extract the data in to my text fields
For Each Row In myDataSet.Tables("[All PLants Summary Data]").Rows
Console.WriteLine(Row.Table.Columns.Item(1))
Console.WriteLine(Row.Table.Columns.Item(2))
Next Row
So I want Row1,Column 2 for my First Text Field
Row2,Column 2 for my Second Field
Row3,Column 3 for my Third field, and so on...
Any ideas at all are greatly appreciated...