[Zope] redirect

Rik Hoekstra rik.hoekstra@inghist.nl
Tue, 24 Oct 2000 15:56:54 +0200


> 
> how to for that function REDIRECT understand a variable.
> 
> ex.
> 
> <dtml-call "RESPONSE.redirect('http://zope.org/index.htm?cod=<dtml-var
> test>')">

You can't nest dmtl tags

try :

<dtml-call "RESPONSE.redirect('http://zope.org/index.htm?cod=' + test)">

Rik