18 Jan
2001
18 Jan
'01
7:15 p.m.
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