FengShui1998
MIS
Hello,
I have an ASP page that runs this javascript at the beginning. I would like to the user to option out of the ASP page. The code below redirects me to the correct page but it still processes the rest of the ASP page. Any ideas?
Thanks
fengshui_1998
<script language="javascript">
var clickok = window.confirm("This page will begin processing orders.\n Click OK to continue. Click Cancel to stop."
if (clickok == false) { document.location="MyAdmin.asp";}
</script>