G
Guest
Dim i As Integer
Dim Collected1 As TextBox
For i = 0 To (Grid.Items.Count - 1)
Collected1 = CType(Grid.Items(i).FindControl("COLLECTED"), TextBox)
Response.Write(Collected1.Text)
Next
This doesn't work and prints nothing even though data is in the textbox.
Any ideas - this is driving me mad...
Dim Collected1 As TextBox
For i = 0 To (Grid.Items.Count - 1)
Collected1 = CType(Grid.Items(i).FindControl("COLLECTED"), TextBox)
Response.Write(Collected1.Text)
Next
This doesn't work and prints nothing even though data is in the textbox.
Any ideas - this is driving me mad...