[Zope] How to use RESPONSE.redirect ?

R. David Murray bitz@bitdance.com
Wed, 16 Aug 2000 00:26:14 -0400 (EDT)


On Tue, 15 Aug 2000, Kapil Thangavelu wrote:
> #example call to above
> #<dtml-call "RESPONSE.redirect(URL1+'?'+url_encode_form_vars(_))">

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 url encoded if it isn't already.  Check the dtml reference.

--RDM