DataTable currentAttribs = //return dataTable of results;
foreach (DataRow r in currentAttribs.Rows)
{
foreach (DataColumn column in r.ItemArray)
{
//run through dataRow and access header?????
{
tableRow = "<TR><TD>" + column[0].ToString() + "</TD></TR>";
Literal lc = new Literal();
lc.Text = tableRow;
divFeatureInfo.Controls.Add(lc);
}
}
}
Returns all the values in the column, but I can't seem to access the value of column header
I can see the header stepping through but do I need to acces it from the outerloop?
UPDATE
I can view the header title from here - r.Table.Columns.NonPublicMembers.List();..but how do i access each one? Shouldnt it be done inside the r.itemArray and not currentAttribs.rows
Loop through the columns