[Zope] Going Back
Dmitry Dembinsky
dmitry@deluxoft.com
Tue, 13 May 2003 18:43:31 +0200
> What, if any, resources are available in Zope (2.6) for me to
> use to construct "back" buttons/links. Is the page I came
> from stored anywhere, or can I access it? Is there such a
> beast as a "back" input type (similar to "submit" or
> "reset")? If not, how can I set up a "back" button/link?
I've never heard about "back" input type
however you probably may use a javascript "history" object:
as a link:
<a href="javascript:history.back()">Link text</a>
or as a button:
<input type="button" value="Button label" onclick="history.back()" />
Dmitry