I have a list box from which the user can select 1 or many options.
In my action asp I want to be able to loop through these options, calling a procedure for each one. Is this possible?
I'm hoping for something that looks like this.
For Each Itm in Request.Forms("listboxname"
.activevalues?
Variable = Request.Forms("listboxname"
. Itm.value
Work with variable
Next Itm
In my action asp I want to be able to loop through these options, calling a procedure for each one. Is this possible?
I'm hoping for something that looks like this.
For Each Itm in Request.Forms("listboxname"
Variable = Request.Forms("listboxname"
Work with variable
Next Itm