Get Updates (It's FREE)

Results 1 to 4 of 4

Thread: Tech Question about squeeze page

  1. #1
    roc
    roc is offline
    (11) Honda
    Joined
    Feb 2011
    Posts
    96
    Thanks
    21
    Thx'd 11 times in 11 Posts

    Default Tech Question about squeeze page

    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

  2. #2
    (15) Kia Chewy's Avatar
    Joined
    Jan 2012
    Locale
    Jacksonville, Florida, United States
    Age
    24
    Posts
    9
    Thanks
    1
    Thx'd 2 times in 2 Posts

    Default

    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>

  3. The Following User Says Thank You to Chewy For This Useful Post:

    V8Bill (Feb 11th, 2012)

  4. #3
    roc
    roc is offline
    (11) Honda
    Joined
    Feb 2011
    Posts
    96
    Thanks
    21
    Thx'd 11 times in 11 Posts

    Default

    Thanks bro!!! I'll going to mess with it tonight and see what happens. I'll keep you update!Roc

  5. #4
    (7) Lexus Brander's Avatar
    Joined
    Jun 2011
    Locale
    Australia, Europe
    Age
    37
    Posts
    352
    Thanks
    41
    Thx'd 86 times in 70 Posts

    Default

    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.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. A Purely Tech Idea and No Tech Experience
    By Drew in forum General Business Discussion
    Replies: 1
    Last Post: May 4th, 2011, 12:16 PM
  2. Capture Page vs direct blog page for Front page use?
    By wallstreet in forum Web Businesses/Internet Marketing
    Replies: 2
    Last Post: Dec 23rd, 2010, 04:50 PM
  3. Landing page question
    By theBiz in forum Web Businesses/Internet Marketing
    Replies: 5
    Last Post: Aug 19th, 2010, 12:05 PM
  4. Video tech question
    By rxcknrxll in forum Web Businesses/Internet Marketing
    Replies: 0
    Last Post: Feb 16th, 2010, 07:59 AM
  5. Squeeze page case study
    By mtnman in forum Web Businesses/Internet Marketing
    Replies: 1
    Last Post: Feb 12th, 2009, 08:49 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •