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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating an array of form values

Status
Not open for further replies.

boux123

Technical User
Mar 20, 2007
16
0
0
CA
Hi,

I had created a form that users can submit upon adding information. I want to create an array that will store each forms' values once each form has been completed.

So for example:

form# field1 field2

1 userEntry1 userEntryOne

2 userEntry2 userEntryTwo


Can someone give me a heads up start on how to create this multidimensional array. Im not too familiar with asp coding. Thx :)

 
You can only submit one <form> at a time.

Also, if a <form> has more than one element with the same name, the values will be available to ASP as a comma separated list. The Split() function to convert this list into an array.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top