Multi-Page Form...

  • Thread starter Thread starter Pablo
  • Start date Start date
P

Pablo

I followed the instructions in the following article:
http://support.microsoft.com/kb/912673.

I can get the form to display correctly in an online environment. I have
the form submitting to a .csv file on the server and then redirecting the
user to a confirmation page. The problem is that the only Saved Fields or
the only fields being saved to the .csv file are those from the last layer
(or the layer with the Submit button), while all other layers are being
omitted. How do I fix this?

Thank you in advance.
 
All the layers should be inside the <form...> </form> tags, and there
should only be one <form...> tag and one </form> tag.

If the above is correct, please give a link to the faulty page.
 
Thank you Ron,

As far as I can tell, each layer has it's own <form> tags.

Do I create the Form layer first and each layer inside of it? I'm a little
confused.
 
No - none of the layers should have a <form> tag.

You should have something like:

<body>
<form>

<div id=layer1>
Form fields
</div>

<div id=layer2>
2nd lot of form fields
</div>

<div id=layer3>
Form fields and submit button
</div>

</form>
</body>


Obviously, there is a lot more than the above (I have only used 3
"pages" for the form, and the code is incomplete), but you can see how
the layers and form tags relate.

--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp
 
Thank you Ronx...

I absolutely misread the article and your advice was money. I would have
responded sooner, but I've had trouble trying to reply on this forum.

But again, thank you.
 
Back
Top