[Zope] Traverse REQUEST.form Querystring values
Chris McDonough
chrism@digicool.com
Thu, 14 Jun 2001 23:47:26 -0400
> tomc@evetcia.com wrote:
>
> How do I traverse the Querystring values in the REQUEST object?
>
> I dont know how many or what name they are so I want to call then in a
> traverse. There are simple ways to do this in Perl and ASP.
>
> Something like
> <dtml-in "REQUEST.form">
> <dtml-var sequence-id> : <dtml-var sequence-value>
> </dtml-in>
>
> Well, I hope you know what I mean.
close..
<dtml-in "REQUEST.form.items()">
<dtml-var sequence-key> : <dtml-var sequence-item>
</dtml-in>
See
http://zdp.zope.org/projects/zsnippet/snippets/DTMLTags/953938017?pp=1