[Zope] RESPONSE.redirect - dynamic names?

Geoff Gardiner ggardiner@synomics.com
Fri, 28 Apr 2000 08:27:48 +0100


It's just so easy once you've been told (or, in other cases, you spot) the
key to it! This works just fine. Thank you very much.

Geoff

-----Original Message-----
...

> <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)">