M
Mats
I'm trying out some code cause of an idea I just got, but it won't work
for each item in Request.Form
Response.Write (Request.Form("item"))
Response.Write("<br>")
next
only one <br> per Request.Form("item") appears on the page, but no item
in Request.Form is written.
However I've learnt that "You can iterate through a collection using a
For Each item in ... Next loop."
Mats
for each item in Request.Form
Response.Write (Request.Form("item"))
Response.Write("<br>")
next
only one <br> per Request.Form("item") appears on the page, but no item
in Request.Form is written.
However I've learnt that "You can iterate through a collection using a
For Each item in ... Next loop."
Mats