1
I have a GridView
and in one of the columns I have a field textbox
where I insert values into them.
I would like to know how to get the typed values of the fields, I have 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 me empty, as if nothing was filled in cell 8 which is where I entered the value.
Voce can put more of the code? in my test works with .Value.Tostring() but has to see how you are building this grid...
– aa_sp