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
_______________________________________________
Zope maillist - [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
** No cross posts or HTML encoding! **
(Related lists -
http://lists.zope.org/mailman/listinfo/zope-announce
http://lists.zope.org/mailman/listinfo/zope-dev )