You could add a JavaScript redirect to the HTML you create. You've probably seen this pattern in action many times.
Whether it works will depend on the trust your browser window/client machine has with your results page (that is, will it allow the script to run).
<html>
<head>
<script type="text/JavaScript">
function Redirect() {
window.location = "https://crmpg.com";
}
document.write("You will be redirected to the new page in 5 seconds.");
setTimeout(function() {
Redirect();
}, 5000);
</script>
</head>
</html>
You could add a JavaScript redirect to the HTML you create. You've probably seen this pattern in action many times.
Whether it works will depend on the trust your browser window/client machine has with your results page (that is, will it allow the script to run).
<html>
<head>
<script type="text/JavaScript">
function Redirect() {
window.location = "https://crmpg.com";
}
document.write("You will be redirected to the new page in 5 seconds.");
setTimeout(function() {
Redirect();
}, 5000);
</script>
</head>
</html>
From what I've seen, general practice is to code in the short delay and also a link they can click in case the script does not run for some reason.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.