Submit form over mutliple web pages

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?
 
M

Murray

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top