ListMailPRO Email Marketing Software Forums

ListMailPRO Email Marketing Software Forums => General Help & How-To => Topic started by: DW on August 05, 2004, 05:10:46 am

Title: redirect automatically from signup success page
Post by: DW on August 05, 2004, 05:10:46 am
This is possible with a little HTML/JavaScript on your Custom HTML signup success page.

Code: [Select]
<html>
<head>
<meta http-equiv="refresh" content="2; URL=http://site.com">
</head>
<body>
Click here if you are not redirected in 2 seconds: <a href="http://site.com">Site</a>
</body>
</html>

You may also be able to use JavaScript, which would be instantaneous:

Code: [Select]
<script> <!—
window.location(‘http://site.com’);
--> </script>