[Zope] Forms, RESPONSE, REQUEST, and redirect

Michal Bencur zope@benko.sk
Mon, 6 May 2002 13:44:31 +0200


do you use RESPONSE.redirect to redirect to another page ?
if so, than a new REQUEST is made, and your old variables are lost.
check REQUEST.SESSION if you want to have variables persistent among request


Michal

On Mon, May 06, 2002 at 02:58:37AM -0700, Dennis Allison wrote:
> If I make a form which has a form variable 'a', that variable is visible 
> at my script.  I can also create a new variable 'b' and put it in the 
> REQUEST object with a REQUEST.set(name,value) call.  But, when I direct 
> from the script to another script (in this case, the original form),
> the REQUEST object does not include these values.