Form Errors

  • Thread starter Thread starter KatWoman
  • Start date Start date
K

KatWoman

when the user makes an error and goes back to correct all
the fields are blanked out and they have to start over. What is a good
method to blank only the wrongly entered info and leave the rest??
 
Use Form field validation to catch errors before they submit.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

-----Original Message-----
From: KatWoman [mailto:[email protected]]
Posted At: 3. juli 2005 22:58
Posted To: microsoft.public.frontpage.client
Conversation: Form Errors
Subject: Form Errors


when the user makes an error and goes back to correct all the fields
are blanked out and they have to start over. What is a good method to
blank only the wrongly entered info and leave the rest??
 
All when using the FP Form Handler the form is already submitted when the user see the confirmation
page, so there is nothing for the user to go back and change, they have to submit a new form.

In order to do what you want requires that you write a custom form handler to process the form using
a server-side script such as ASP, ASP.net, PHP, etc.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Thomas A. Rowe said:
All when using the FP Form Handler the form is already submitted when the
user see the confirmation page, so there is nothing for the user to go
back and change, they have to submit a new form.

In order to do what you want requires that you write a custom form handler
to process the form using a server-side script such as ASP, ASP.net, PHP,
etc.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

Thanks for your replies gentlemen.
 
Back
Top