.ASP Form Submission Problems

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Please browse to my problem page: http://www.curbimpressions.com/feedback.asp

Niether the FEEDBACK nor the CONTACT US forms are successfully submitting
the entered information to my email address. Both forms are configured
identically, and share the same confirmation page. However, I have obviously
not seen this confirmation page in action due to my problem. In the past I
have created similar pages with no problems at all. Does anyone know what I
could be doing wrong this time around?

Thanks in advance,
David Patterson
 
1. You have the form posting to itself.
2. You can't use the FP Form Handler to process form with .asp or any server-side script
3. You have to custom write a ASP script to process the form or you need to change the form to have
..htm or .html file extension.

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

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

As Thomas mentioned, you can't use the FP form handler with .asp

Remove this (action=feedback.asp), change the extension to .htm or .html,
republish and you should have a working form.
 
Back
Top