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.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for 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.