Hi All,
In case of error, I would like to redirect the user to his previous page when the error page is shown for 4 seconds. I Also need to put a progress bar on the error page to let the user know that it is processing.
Many Thanks you in advance
Add this script in you Error page.
It will be redirected to previous page automatically.
JavaScript
<script type="text/javascript"> window.onload = function () { setTimeout( function () { window.history.go(-1); }, 5000); } </script>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.