If I had a series of textboxes like below:
If I wanted to write a For/Next loop to get the ".TEXT" information out of these boxes, could I create a variable to refernce the id value? Is there some way to add the loop counter to the variable in order to reference the "id"? Is this possible?
Thanks
Code:
<asp:textbox id=txtBox01 runat="server">
<asp:textbox id=txtBox02 runat="server">
<asp:textbox id=txtBox03 runat="server">
<asp:textbox id=txtBox04 runat="server">
<asp:textbox id=txtBox05 runat="server">
If I wanted to write a For/Next loop to get the ".TEXT" information out of these boxes, could I create a variable to refernce the id value? Is there some way to add the loop counter to the variable in order to reference the "id"? Is this possible?
Thanks