Question : passing a looped value to a form

I'm generating a value from a loop in a select.
When it's passed to the next form i would like the value if selected to remain.
Normally i set the value to whatever "form.var" is but since this is also dynamically populated on the receiving form.... How?

Thanks
1:
2:
3:
4:
5:
6:
7:
8:
9:
<select name="numDays">
          	<option></option>
            <cfset i = 0>
            <cfloop from="1" to="30" index="i">
            <option>#i#
            <cfset i++>
            </option>
            </cfloop>
          </select>

Answer : passing a looped value to a form

C:\users\%nameofuser%

you will see favs
Random Solutions  
 
programming4us programming4us