Can a member please explain on how I would have someone that goes to my domain, be forwarded a squeeze page and after submitting their email info or declining be forwarded directly to my afflitae sale page?
Would I have to do an iframe? Thanks roc
Can a member please explain on how I would have someone that goes to my domain, be forwarded a squeeze page and after submitting their email info or declining be forwarded directly to my afflitae sale page?
Would I have to do an iframe? Thanks roc
You need a script for the email submit function:
BrainJar.com: ASP FormMail
here is a slightly modified version of that code and some sample code from w3schools.com to do what you need
Code:<html> <head> <script type="text/javascript"> function validateForm() { var x=document.forms["myForm"]["email"].value; var atpos=x.indexOf("@"); var dotpos=x.lastIndexOf("."); if (atpos<1 || dotpos<atpos+2 || dotpos+2>=x.length) { alert("Not a valid e-mail address"); return false; } } function changePage() { document.location.href="http://www.YourAffiliate.com/"; } </script> </head> <body> <form name="myForm" action="/scripts/formmail.asp" onsubmit="return validateForm();" method="post"> <input name="_recipients" type="hidden" value="support@example.net" /> Email: <input type="text" name="email"> <input type="submit" value="Submit"> <input type="button" value="Cancel" onclick="changePage()" /> </form> </body> </html>
V8Bill (Feb 11th, 2012)
Thanks bro!!! I'll going to mess with it tonight and see what happens. I'll keep you update!Roc
Whatever autoresponder you are using you can always define the page that shows up after form submission. Just put the URL of aff sales page there. Good luck.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks