Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

get all form elements 1

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
By request.form("name") gets one element of a form.

How can I get all elements??
 
request.form holds all the form elements you either reference an element by name or by its position in the form collection

reference thru collection:

totalFormElements = request.form.count

for i = 0 to totalFormElements-1
response.write request.form.item(i).value
next
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top