View previous topic :: View next topic |
Author |
Message |
cindybaucom
Joined: 02 Mar 2010 Posts: 1
|
Posted: Thu Mar 10, 2016 3:35 am Post subject: redirect page doubled |
|
|
When clients are redirected they see the contact page and the redirect page in the the space where the contact form was. I am not sure I explained this clearly. My contact form is located at http://www.go-proinc.com/id49.htm
This looks very unprofessional. Please help. |
|
Back to top |
|
|
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Thu Mar 10, 2016 3:49 am Post subject: Frameset |
|
|
Good Day,
Your form is currently setup within a frameset. Because of this, the redirect action is actually occurring within the frame. Adding the parameter target="_parent" to the action line in the code will correct this.
Change:
Code: |
<form name="contactForm" id="contactForm" method="post" action="http://www.mycontactform.com/sendform/sendform.php" style="width: 100%; border: 0px solid #000000; margin: 0; padding: 0; background-color: #FFFFFF;"> |
To:
Code: |
<form name="contactForm" id="contactForm" method="post" action="http://www.mycontactform.com/sendform/sendform.php" target="_parent" style="width: 100%; border: 0px solid #000000; margin: 0; padding: 0; background-color: #FFFFFF;"> |
Nick Ladd
myContactForm.com |
|
Back to top |
|
|
|