26 Mar
2001
26 Mar
'01
8:22 p.m.
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