I am using asp to create my web page.
I want to add a link that has same function as "Back" on browser. so user are able to go back to previous page.
please tell me what object or property I need to do this.
and how?
Thanks
Cerebrate
Printable View
I am using asp to create my web page.
I want to add a link that has same function as "Back" on browser. so user are able to go back to previous page.
please tell me what object or property I need to do this.
and how?
Thanks
Cerebrate
using javascript as a link:
<A HREF="javascript:window.history.back(1);">Click Here To Go Back</A>
the number 1 is the distance to go back in page history
Tom