Hi everybody, I have a form with a bunch of fields submitted to the server, the first characters in the field names are the same for all of them, followed by an incremental number, then "any characters" ej..
sunbox15_1_b151, sunbox15_1_b152, sunbox15_1_b153...and so on...my idea is to retrieve them using something like
for i=1 to request.form("sunbox15_1_" & somewildcharacter).count
Response.Write(Request.Form("sunbox15_1_" & suffix)(i) & "<br>")
next
any ideas......???
sunbox15_1_b151, sunbox15_1_b152, sunbox15_1_b153...and so on...my idea is to retrieve them using something like
for i=1 to request.form("sunbox15_1_" & somewildcharacter).count
Response.Write(Request.Form("sunbox15_1_" & suffix)(i) & "<br>")
next
any ideas......???

Comment