|
There's a hundred ways to do it, here are a few:
1.
<a href="javascript:history.go(-1)" onMouseOver="self.status=document.referrer;return true">Go Back</a>
2.
<input name="btnBack" title="back"
onMouseOver="window.status='Previous Page'; return true"
onMouseOut="window.status=''; return true"
onclick="location.href = 'javascript:history.go(-1)'" ; type="button"
value="Previous Page">
3.
<form>
<input type=button value="Back"
onCLick="history.back()">
</form>
4.
<INPUT TYPE="button" VALUE="Back" onClick="history.go(-1);">
|