View previous topic :: View next topic |
Author |
Message |
vechik
Joined: 07 Feb 2008 Posts: 2
|
Posted: Fri Feb 08, 2008 6:27 am Post subject: Form not sending data |
|
|
The form URL is http://www.nlc.org/resources_for_cities/leadership_training_programs/emailLTI.aspx
I have done 4 tests to two different email accounts, both within the organization. I checked Junk mail and Quarantine in case our filters blocked the sender. I looked for the extra <form> tag and there is not one in the code. We use a CMS to mantain our website on a .net platform. I would like to be able to upgrade and use this tool as it would be very beneficial for many of my staff. Help is appreciated.
vechik |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Fri Feb 08, 2008 4:24 pm Post subject: Reply |
|
|
The problem is with your CMS. There appears to be an open form tag that the myContactForm.com code is being placed within. The code in question is:
Code: |
<form name="_ctl0" method="post" action="emailLTI.aspx" id="_ctl0"> |
The myContactForm.com code is residing within this form tag. When 'submit' on the myContactForm.com form is hit, it is submitting to emailLTI.aspx rather than the proper location. You need to close the above form tag in order for the myContactForm.com code to function.
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|