[Zope] Accessing forms through dtml
Terrel Shumway
tshumway@ics.uci.edu
Mon, 11 Oct 1999 16:07:37 -0700
DYLANSNOW@aol.com wrote:
> Heres what I am trying to do...
>
> I have a form with a large number of input fields on a dtml document which
> passes control to a dtml method to send mail to the user informing them of
> their request. I don't want to have to access every form by it's name to get
> the data. If I could make a general method to get the data from the form and
> put it into an array it would be great. Is there a form object accessible by
> Zope? Any input you have would be great.
REQUEST.form is a dictionary with all of the values entered in all forms on the
page. Unfortunately the original order is lost.