User Validation Before Submit?

G

Guest

I have built a form to collect information from the user. Right now when the SUBMIT button is clicked, the form results are sent to a file & email and the user sees the confirmation page. I would like to have the user view the information on the the confirmation page and if it is good THEN have the results submitted to the file & email. Is that possible
Janice
 
R

Ricardo

There are several ways.

Probably your best bet would be to post the information from your form
(using asp so you can keep session variables) to another html form. Use that
form for confirmation, and then submit your form to a file and email.

Lie so: form1 gets user stuff -> using asp post the information from the
variables on form1 to form2

JBoggs said:
I have built a form to collect information from the user. Right now when
the SUBMIT button is clicked, the form results are sent to a file & email
and the user sees the confirmation page. I would like to have the user view
the information on the the confirmation page and if it is good THEN have the
results submitted to the file & email. Is that possible?
 
T

Thomas A. Rowe

Not possible when using the FP Form Handler. The best you can do is to use FP's Form Field
Validation. Otherwise you will have to learn to code in whatever server-side scripting language is
supported by your host.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================


JBoggs said:
I have built a form to collect information from the user. Right now when the SUBMIT button is
clicked, the form results are sent to a file & email and the user sees the confirmation page. I
would like to have the user view the information on the the confirmation page and if it is good THEN
have the results submitted to the file & email. Is that possible?
 
R

Ricardo

The point was to NOT us FP form handlers. Create your own was the plan.

Thomas A. Rowe said:
Not possible when using the FP Form Handler. The best you can do is to use FP's Form Field
Validation. Otherwise you will have to learn to code in whatever
server-side scripting language is
 
G

Guest

Not the answer I was hoping for, as I don't code right now. But at least I will stop beating my head against the wall and find another way. Thank you very much

Janice
 
R

Ricardo

Here are some links that may help:

http://support.microsoft.com/default.aspx?scid=kb;en-us;163499&Product=iis50
http://support.microsoft.com/default.aspx?scid=kb;en-us;281570&Product=iis50
http://support.microsoft.com/default.aspx?scid=kb;en-us;260529&Product=iis50

The last one would probably help the most as it allows you to create a
'Re-entrant Page'

Hope they help.

:)
JBoggs said:
Not the answer I was hoping for, as I don't code right now. But at least
I will stop beating my head against the wall and find another way. Thank
you very much.
 

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