I have a vb .net application in which i'm using a user control for the user registration. This user control has 3 buttons and three asp panels. In each button click corresponding panel will be shown. I need to hide the browser back button functionality only in the 3rd button click. How can i do it? Anyone please help me.
I have tried by putting this line of script in the aspx page which contains the user control.
<script type="text/javascript">
window.history.forward();
</script>
But it didnt work for me.