Мне нужно перебрать GridView и найти значение столбца Eval("name")
каждой выбранной строки.
Код:
string title = "";
foreach (GridViewRow row in gdv.Rows)
{
if (row.BackColor.Equals(Color.LightGoldenrodYellow))
{
title += row.Cells[0].Text + ", "; // doesn't work, even though the value i want is in the very first column
}
}