Is there some simple HTML to create a hyperlink or button
to achieve the "back" function of returning to a previous
page?
Thank you.

Re: "Back" Hyperlink by Ken

Ken
Fri May 21 20:19:11 CDT 2004

<a href="javascript:history.back(1)">Back</a>

<a href="javascript:history.go(-1)">Back</a>


<form>
<input type="button" value="Back" onClick="history.go(-1)">
</form>

--
Ken Ford
PVII Support Team
http://www.projectseven.com


"Jay" <anonymous@discussions.microsoft.com> wrote in message news:1074701c43f99$262cc170$a001280a@phx.gbl...
> Is there some simple HTML to create a hyperlink or button
> to achieve the "back" function of returning to a previous
> page?
> Thank you.



Re: "Back" Hyperlink by Kathleen

Kathleen
Fri May 21 20:19:40 CDT 2004

In HTML view, add the following: <a
href="JavaScript:history.back()">Back</a>

--
~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
http://www.spiderwebwoman.com/resources/




Jay <anonymous@discussions.microsoft.com> wrote:
> Is there some simple HTML to create a hyperlink or button
> to achieve the "back" function of returning to a previous
> page?
> Thank you.


Re: "Back" Hyperlink by \\~Virus

\\~Virus
Sat May 22 09:53:08 CDT 2004

Add this as a tag or HTML view:
<a href="javascript:history.back(1)">Back<a/>

DaN
"Kathleen Anderson [MVP - FP]" <spiderwebwoman@mvps.org> wrote in message
news:e8JTrr5PEHA.3524@TK2MSFTNGP09.phx.gbl...
> In HTML view, add the following: <a
> href="JavaScript:history.back()">Back</a>
>
> --
> ~ Kathleen Anderson
> Microsoft MVP - FrontPage
> Spider Web Woman Designs
> http://www.spiderwebwoman.com/resources/
>
>
>
>
> Jay <anonymous@discussions.microsoft.com> wrote:
> > Is there some simple HTML to create a hyperlink or button
> > to achieve the "back" function of returning to a previous
> > page?
> > Thank you.
>



Re: "Back" Hyperlink by cookoonest

cookoonest
Sat May 22 11:11:28 CDT 2004

<input type=button value="Back" onClick="history.go(-1)">


"Jay" <anonymous@discussions.microsoft.com> wrote in message
news:1074701c43f99$262cc170$a001280a@phx.gbl...
> Is there some simple HTML to create a hyperlink or button
> to achieve the "back" function of returning to a previous
> page?
> Thank you.