Hi, I have a HTML form with several textboxes named txt1, txt2... txtX, Where X is unknown as the textboxes are generated using a loop
<... name="txt<%=x%>">
In vbscript, how can i concatinate the control names to get the textbox's values. For example:
x = 1
Do While ...
val = txt & x & . value
x = x + 1
Loop
One restriction, due to my application's structure, I cannot use arrays


Reply With Quote
Bookmarks