silversurfer
Programmer
I have got a <select> list set to multiple, so the user can choose more than one options.Easy..., but how can I request these values? I know how it works with one value, but passing on more than one value from one list gives me a headache
I though the following code would work, but it doesn't
<%
For Each item In Request.Form("formname"
Response.Write item & "<BR>"
Next
%>
or
<%
For I = 1 To Request.Form("formname".Count
Response.Write Request.Form("formname"(I) & "<BR>"
Next
%>
Does anybody has got an idea?
I though the following code would work, but it doesn't
<%
For Each item In Request.Form("formname"
Response.Write item & "<BR>"
Next
%>
or
<%
For I = 1 To Request.Form("formname".Count
Response.Write Request.Form("formname"(I) & "<BR>"
Next
%>
Does anybody has got an idea?