View previous topic :: View next topic |
Author |
Message |
gooner
Joined: 01 Jun 2007 Posts: 2
|
Posted: Mon Jun 04, 2007 7:53 am Post subject: Form not working |
|
|
Hi I have attached two forms to a web site. www.asurayoga.com. The first was created using a a standard template and works fine. The 2nd was created using the custom form method and every time i try to use it on the web I get the following on submit:
The requested URL /asurayoga/_derived/nortbots.htm was not found on this server.
I have tried 2 versions of the form 1)booking 2) Booking Enquiry
My username is Gooner and the form can be found at http://www.aquiyahora.eu/asurayoga/booking.htm
Any help greatly appreciated |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Thu Jun 07, 2007 7:19 am Post subject: Reply |
|
|
The problem is that you have pasted the myContactForm.com within an existing open form tag on your site. This is basically creating a form within a form situation which is causing the problem. The line of code in question is:
Code: |
<form action="_derived/nortbots.htm" method="POST" enctype="text/plain" name="" onSubmit="location.href='_derived/nortbots.htm';return false;" webbot-onSubmit webbot-action="--WEBBOT-SELF--"> |
You need to either get rid of this line of code, or move the end form tag to directly after it (it currently resides near the end of your html document).
Sincerely,
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
gooner
Joined: 01 Jun 2007 Posts: 2
|
Posted: Thu Jun 07, 2007 8:13 am Post subject: |
|
|
Thanks Nick. That did the job.
 |
|
Back to top |
|
 |
|