Forum Moderators: mack
I want to redirect the user ONE step back in itīs history. Also, I want the page to refresh when the user gets there.
The scenerior is:
The user is deleting records in a database. They are alerted that the recorded has been deleted, after they click on the button with the ALERT, I wan tthem to go back one page and that same page be refreshed.
Current Javascript Code:
<script language="javascript">
<!--
alert("Record Deleted.")
history.go(-1)
//-->
</script>
<input type=button name=button1 value="Back" onClick="javascript:window.close();">
Thank Anthony