[Zope] how to access an external method via a hyperlink

Pavlos Christoforou pavlos@gaaros.msrc.sunysb.edu
Fri, 26 Nov 1999 17:42:18 -0500 (EST)


On Fri, 26 Nov 1999, Philipp Auersperg wrote:

> Is it possible to access an external method via a hyperlink?

Yes, including all zope public methods.
> 
> I am able to do that from a form:
> 
> -------------------------------------------------------------------------
> <form action=fshSetKat method=post>
> <input type=submit name=submit value=<dtml-var name> >
> <input type=hidden name=KategorieID value="<dtml-var KategorieID>" >
> </form>

http://ww.youraddress.com/fshSetKat?KategorieID=<your cat id>

but it will no longer be hidden.

if it is important that it should be hidden, you can either store it as a
cookie, or store it on the filesystem.