[Zope] sendmail / python list parameter -> DTML method
Dieter Maurer
dieter@handshake.de
Thu, 18 Jan 2001 20:15:55 +0100 (CET)
Lee writes:
> When a form is submitted the current REQUEST object's form data is cleared
> and repopulated using the new form input parameters, yeah? Is it possible
> to *not* clear it?
No.
As the name suggests "REQUEST" describes the current request.
A new request creates a new "REQUEST" object.
If you want to retain information between requests,
you use either
* a session product (recommended) --> zope.org
* hidden variables:
to hold a list, one for each list element
all with the same name and with ":list" suffix
Dieter