NetTalk Central
Toggle navigation
Login
Register
×
Welcome,Guest
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
NetTalk Central
»
NetTalk Web Server
»
Web Server - Ask For Help
»
Add a "back" button to a form
« previous
next »
Print
Pages: [
1
]
Author
Topic: Add a "back" button to a form (Read 3898 times)
johncort
Newbie
Posts: 6
Add a "back" button to a form
«
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.
Logged
ccordes
Sr. Member
Posts: 384
Re: Add a "back" button to a form
«
Reply #1 on:
October 16, 2007, 01:07:33 PM »
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
Logged
Real programmers use copy con newapp.exe
Print
Pages: [
1
]
« previous
next »
NetTalk Central
»
NetTalk Web Server
»
Web Server - Ask For Help
»
Add a "back" button to a form