I believe the values are retrieved in a comma-delimited list when you do a request.querystring (or form for that matter). So first, you will want to put them in an array using the Split function. something like:
arMyValue = Split(Request.Querystring("FormElement"), ",") for i = lbound(arMyValue) to ubound(arMyValue) ' do something next
no this will work... if your query string is ?name=john&name=sarah <% for x=1 to request.querystring("name").count response.write(request.querystring("name")(x)) response.write("<br>") next %>
will output: john sarah
i was wondering if <% for x=1 to request.form("name").count response.write(request.form("name")(x)) response.write("<br>") next %>