hello,
Am using
VB script and need solutions
THREE PROBLEMS:
1. Picking variables from a dynamic generated form
2. Assigning variables to an array
3. Create a repeated region for the array
i have an array as
dim afrika(6)
I would want to be able to assign variables to the array, based on form variables from a form.
Now, the form that would pass the variables generates dynamic form elements.
How could i:
1. Get all the values from the dynamic form
2. Assign them to an array
3. Create a repeated region for the array(s). Using
for each
response.write(array(0))
next
I am currently trying the script below, but doesnt seem to work
a=0
for each item in request.form
arrayMe(a) = request.form(item)
a = a+1
next
for a = 0 to Ubound(arrayMe)
response.write arrayMe(a)
next
Any Advice ?
thanks