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.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.