views:

4

answers:

0

I have server controls that I am dynamically adding to a page and assigning a unique ID based on the index such as

control.id = "mytextbox" + i

What I am trying to do is have a related control for example each textbox would also have a related dropdown menu so users can enter a request in the textbox and select a quantity in the dropdown and then I would need to loop through all of the textbox/dropdown combinations and get the related values for each.

related questions