i have a series of about 600 text boxes that i need to pass to another asp page and they are named using a loop. ie
do while not rst.eof
<input type=text name="<%"name" & loop_counter %>">
rst.movenext
loop
the exact number of boxes is not known and depends on user parameters.
how would i use request.form on the following page to get the data from these input boxes.
this code does not work
for indx = 1 to loop_counter
val = request.form("name" & indx)
next
do while not rst.eof
<input type=text name="<%"name" & loop_counter %>">
rst.movenext
loop
the exact number of boxes is not known and depends on user parameters.
how would i use request.form on the following page to get the data from these input boxes.
this code does not work
for indx = 1 to loop_counter
val = request.form("name" & indx)
next