Jump to content

'splashpage/redirect


russell1

Recommended Posts

The below form HTML, which came from:http://w3schools.com/html/tryit.asp?filena...yhtml_form_mailshows how to receive a person's information.I am wondering what HTML needs to be added, and where, in orderto receive the information And to send the person to view a particularSite, as in an AutoResponder.I have been told that it is strictly an "A R Thing" and is generatedper each AR. But, surely there is general HTML that would allowme to build a simple form in order to capture a person's informationAnd have them sent to start viewing a particular WebSite, as ina "Splashpage."Thank you, Russell~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<html><body><form action="MAILTO:someone@w3schools.com" method="post" enctype="text/plain"><h3>This form sends an e-mail to W3Schools.</h3>Name:<br><input type="text" name="name"value="yourname" size="20"><br>Mail:<br><input type="text" name="mail"value="yourmail" size="20"><br>Comment:<br><input type="text" name="comment"value="yourcomment" size="40"><br><br><input type="submit" value="Send"><input type="reset" value="Reset"></form></body></html>~~~~~~~~~~~~~~~~~~~~~~~~[ Sorry, meant to post this under "forms help." ]

Link to comment
Share on other sites

The below form HTML, which came from:http://w3schools.com/html/tryit.asp?filena...yhtml_form_mailshows how to receive a person's information.I am wondering what HTML needs to be added, and where, in orderto receive the information And to send the person to view a particularSite, as in an AutoResponder.I have been told that it is strictly an "A R Thing" and is generatedper each AR. But, surely there is general HTML that would allowme to build a simple form in order to capture a person's informationAnd have them sent to start viewing a particular WebSite, as ina "Splashpage."Thank you, Russell~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<html><body><form action="MAILTO:someone@w3schools.com" method="post" enctype="text/plain"><h3>This form sends an e-mail to W3Schools.</h3>Name:<br><input type="text" name="name"value="yourname" size="20"><br>Mail:<br><input type="text" name="mail"value="yourmail" size="20"><br>Comment:<br><input type="text" name="comment"value="yourcomment" size="40"><br><br><input type="submit" value="Send"><input type="reset" value="Reset"></form></body></html>~~~~~~~~~~~~~~~~~~~~~~~~[ Sorry, meant to post this under "forms help." ]
Link to comment
Share on other sites

Redirects are usually not the best way to start a visitor off on your website, can't stand redirects myself, but if you must use it, below is an example redirect using the meta tag.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Your Page Title</title><meta http-equiv="REFRESH" content="0;url=http://www.the-domain-you-want-to-redirect-to.com"></HEAD><BODY>Optional page text here.</BODY></HTML>

Link to comment
Share on other sites

Thank you but, that is a 'real' redirect URL which I guess is used to redirectwhen using a different URL.I am seeking the code to add to the above for that when the person fills inthe form that I have on my webpage, such as a 'splashpage,' and then Submitsthe Form, their information is sent to me and They are sent to a certain site.ty...russell~~~~~~~~~~~~~~~~~~~~

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...