NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: johncort on October 15, 2007, 08:19:47 PM
-
I've seen this done on the TNA server I believe - how does one create a back button that takes the user back to the page they came from? Thanks for any help.
-
A little javascript might work
As a link
<a href="#" onClick="history.go(-1)">Back</a>
or as a button
<input type=button value="Back" onClick="history.go(-1)">
HTH
chris c