PoppapumpJ
Programmer
Is it possible to determine the name of a field while processing it
Example:
Page 1 one has X number of fields.
Page 2 collects more information but needs to save the information from the first.
since page one's fields are dynamically generated, I can't hardcode the names of all of the fields.
do until itemCounter > Request.Form.Count
Response.Write "<input type='hidden' value='" & Request.Form(itemCounter)& "'>"
itemCounter = itemCounter + 1
loop
is there a way to set the Name attribute = to the name from the previous page.
thanks
Example:
Page 1 one has X number of fields.
Page 2 collects more information but needs to save the information from the first.
since page one's fields are dynamically generated, I can't hardcode the names of all of the fields.
do until itemCounter > Request.Form.Count
Response.Write "<input type='hidden' value='" & Request.Form(itemCounter)& "'>"
itemCounter = itemCounter + 1
loop
is there a way to set the Name attribute = to the name from the previous page.
thanks