I have a Select in a form, which has multiple values. How can I get all the values from the Request Form collection ? I am using the post method. When I am specifying
Response.write Request.Form("Select1")
it only shows the last value.
I have tried using Request.Form("Select1").options[x] as a loop but it gives an error saying
Object doesn't support this property or method 'options'
Thanks