[Zope] GET variables..
Emmanuel Viennet
emmanuel.viennet@lipn.univ-paris13.fr
Mon, 26 Mar 2001 22:22:13 +0200
Zope put the request parameters (retreived from GET or POST requests) in the
namespace.
In your example:
> Example:
> -----------
> <form name="busca" action="pesquisa.htm" method=get
> target="mainFrame">
> <input name=PrincipiaSearchSource size=12 value="">
> <input type=hidden name=raw ="">
> </form>
> -----------
you have access to the variables PrincipiaSearchSource
and raw in pesquisa.htm, using
e.g. <dtml-var PrincipiaSearchSource>
Emmanuel