Multi-Page Form...

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.
 
R

Ronx

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.
 
P

Pablo

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.
 
R

Ronx

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
 
P

Pablo

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.
 

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