Submit form over mutliple web pages

  • Thread starter Thread starter Seraphim
  • Start date Start date
S

Seraphim

I am trying to set up a form for people to submit on my web site. The form
is quite lengthy and needs to be accessed over several web pages. How do I
set this up so people fill in a part of the form then go onto the next part,
without having to submit multiple forms?
 
Have each form page submit to the next page, e.g.,

on page 1 have -

<form action="page2.asp"...

Have each subsequent page collect the previous page's fields from the posted
data and load it into hidden fields in the current page's form (you'll need
to use server scripting to do this, which is why I used an asp page in the
example above).

Thus, each page's data will accumulate in the last page, and when the form
is submitted all of the data will go with it.
 
Back
Top