Re: [Zope] How to use RESPONSE.redirect ?

2000-08-15 Thread Jonothan Farr
HTTP is stateless. You'll have to build the entire query string and put it into your redirect URL. --jfarr - Original Message - From: Stuart Foster <[EMAIL PROTECTED]> To: Zope List <[EMAIL PROTECTED]> Sent: Tuesday, August 15, 2000 10:19 AM Subject: [Zope] How to use RESPONSE.redirect ?

Re: [Zope] How to use RESPONSE.redirect ?

2000-08-15 Thread Peter Bengtsson
Should do it! or maybe > > > If I do > > The current form isn't being passed ? > > Any ideas.. > > TIA > Stuart > > > ___ > Zope maillist - [EMAIL PROTECTED] > http://lists.zope.org/mailman/listinfo/zope > ** No cross posts or HTML encodin

Re: [Zope] How to use RESPONSE.redirect ?

2000-08-15 Thread Curtis Maloney
On Wed, 16 Aug 2000, Stuart Foster wrote: > I want to use redirect to call another form passing the current form, how > can I do that. > > > > If I do > > The current form isn't being passed ? > If you want to pass the form variables, you're in for a fight. (o8 otherwise, you could simply try :

Re: [Zope] How to use RESPONSE.redirect ?

2000-08-15 Thread Kapil Thangavelu
Stuart Foster Wrote: > I want to use redirect to call another form passing the current form, how > can I do that. > > > Hi Stuart, i ran into the same problem a little while ago. i was trying to pass the user around to the proper display&process page(with inputs inplace) after a logic page th

Re: [Zope] How to use RESPONSE.redirect ?

2000-08-15 Thread R. David Murray
On Tue, 15 Aug 2000, Kapil Thangavelu wrote: > #example call to above > # If your original form submits using the GET method, then QUERY_STRING will contain the already URL encoded parameters that the browser sent originally. DTML also has a url_encode format you can use to cause a string to be

Re: [Zope] How to use RESPONSE.redirect ?

2000-08-16 Thread Kapil Thangavelu
"R. David Murray" wrote: > > On Tue, 15 Aug 2000, Kapil Thangavelu wrote: > > #example call to above > > # > > If your original form submits using the GET method, then QUERY_STRING > will contain the already URL encoded parameters that the browser > sent originally. True. However, the GET metho

RE: [Zope] How to use RESPONSE.redirect ?

2000-08-17 Thread Stuart Foster
, August 15, 2000 3:44 PM To: Stuart Foster Cc: Zope List Subject: Re: [Zope] How to use RESPONSE.redirect ? Stuart Foster Wrote: > I want to use redirect to call another form passing the current form, how > can I do that. > > > Hi Stuart, i ran into the same problem a little while ag

RE: [Zope] How to use RESPONSE.redirect ?

2000-08-17 Thread Stuart Foster
Thanks for the input. -Original Message- From: Curtis Maloney [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 15, 2000 5:59 PM To: Stuart Foster; Zope List Subject: Re: [Zope] How to use RESPONSE.redirect ? On Wed, 16 Aug 2000, Stuart Foster wrote: > I want to use redirect to c