I dynamically create any number of asp:textbox(es) in my page depending on the number of records returned. when the user clicks the button, i want to collect the values of said created asp:textbox(es). my code to obtain the values are as follows, but obviously does not work or i would not have added this thread :

Code:
Dim frmControl as Object

'// AddProds is the name of the form
For Each frmControl In Page.FindControl("AddProds").Controls
    Response.Write(frmControl.ID & "<BR />")
Next
my head is ready to if I cant figure this out.