View previous topic :: View next topic |
Author |
Message |
dmacs
Joined: 18 Nov 2010 Posts: 1
|
Posted: Wed Jan 26, 2011 4:02 pm Post subject: Form not being sent to my email |
|
|
Hi,
I am an absolute newbie to this, so please be gentle with me...
I have created a simple website for my organisation on expressionweb, have used your form wizard to create an email feedback form.
Followed your instructions and the form comes up good on the site, but when I hit the submit button it looks like it has reset the data but not sent the form through.
the form is located at http://www.dmacs.com.au/email_us/default.html
Can you please help? |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Thu Jan 27, 2011 5:44 am Post subject: Reply |
|
|
Good Day,
The issue is that on your web site, the form is being placed into an existing open form tag. If you look at the source for the page, you will see the following code near the top of the page:
[code]<form id="form1" runat="server">[/form]
This form tag is taking over our form tag and essentially posting the form data back to this web page instead of to our processing script (this is why the page refreshes when submit is hit). You need to either close the above tag or remove it all together before entering the myContactForm.com code.
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|