I've a gridview in my web form and I'm using a the following code in my web form's Save button:
foreach (GridViewRow row in gvList.Rows)
if (row.RowType == DataControlRowType.DataRow)
{ for (int i = 0; i < row.Cells.Count; i++)
{
string headerRowText = ???;
How can I get the current cell's header text.