I know that you can't make msgbox in asp for confirmation because ASP is server side... So you have to code your confirm box in Javascript like:
<script type="text/javascript">
confirm("Your text here");
</script>
But, I have only found application that use that confirm code on the Onclick of button. Nothing within the code. So for now, I can make the box appear but I can't retreive the result (wich button have been clicked).
I want to ask my user if they want to continue during the process. It is possible or not?
Thanks
<script type="text/javascript">
confirm("Your text here");
</script>
But, I have only found application that use that confirm code on the Onclick of button. Nothing within the code. So for now, I can make the box appear but I can't retreive the result (wich button have been clicked).
I want to ask my user if they want to continue during the process. It is possible or not?
Thanks