P
Paulo
Hi, I have a grid with a template column wich is a TextBox, how can I
retrieve the values typed by the user? I tried the code below but it always
returns empty string:
for (int i = 0; i < grdDocs.Rows.Count; i++)
{
Response.Write(grdDocs.Rows.Cells[2].Text.ToString() + "<br>");
}
Thanks in advance!
retrieve the values typed by the user? I tried the code below but it always
returns empty string:
for (int i = 0; i < grdDocs.Rows.Count; i++)
{
Response.Write(grdDocs.Rows.Cells[2].Text.ToString() + "<br>");
}
Thanks in advance!