[Zope] RESPONSE.redirect - dynamic names?

Chris Withers chrisw@nipltd.com
Thu, 27 Apr 2000 18:06:52 +0100


> <dtml-call "RESPONSE.redirect('processform?withparam=<dtml-var param>')">

Yes, because anything in quotes in a dtml-var is a python expression.

What you want is:

<dtml-call "RESPONSE.redirect('processform?withparam='+param)">

cheers,

Chris