View previous topic :: View next topic |
Author |
Message |
bdelemos
Joined: 07 May 2009 Posts: 1
|
Posted: Tue May 12, 2009 8:02 am Post subject: The form I created - once filled out it: |
|
|
1. It does not redirect to the the Thank you page
2. It does not submit to the email address supplied - nothing happens except the information in the fields clear out.
I read through the other posts like this & the help was specifically for them - I tried to find a similar error in my html, but that didnt work.
My url is: http://www.victoryfellowship.org/our_church_sm_register.aspx
Can you help me? Thanks, Beth D |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Tue May 12, 2009 9:17 am Post subject: Reply |
|
|
If you look at your web site HTML code, right after the body tag you will see the following line:
Code: |
<form name="aspnetForm" method="post" action="our_church_sm_register.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm"> |
This form tag is open for basically your entire page. Since you have posted the myContactForm.com code within this open form tag, instead of the email form being submitted to our script for processing it is instead submitting the data to the 'action' in the code above. You need to remove this form tag or close it before pasting in the myContactForm.com code.
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|