I have GridView
and in one of the columns I have a textbox
field where I enter values in them.
I would like to know how I get the values typed from the fields, I've already done the following:
for (int i = 0; i <= gvTeste.Rows.Count - 1; i++)
{
string variavel = gvTeste.Rows[i].Cells[8].Text
}
But it is always returning empty, as if nothing is filled in cell 8 which is where I entered the value.