Hi
I have a form with a few check boxes where the value is populated from the database e.g
<code>
<input type="checkbox" name="multiple" value="& productsRs("productCode") &" />
</code>
I have say around five of these. I obtain the values of the checkboxes like this:
<code>
Dim Item
For Each Item In Request.QueryString("multiple")
Response.Write Item & " "
Next
</code>
The page will then display all the values of the checkboxes.
The part I am stuck on is how do I separate the values of each checkboxes into session variables after the for each statement e.g:
checkbox value1 = session("1")
checkbox value2 = session("2")
checkbox value3 = session("3")
checkbox value4 = session("4")
Any suggestions please?





Bookmarks