[Zope] Problems with response.redirect

Sergey Volobuev zope at phpv.khv.ru
Tue Nov 11 09:24:27 EST 2003


> What is wrong with that code ? I´m trying to pass a variable EdtCodigo 
> as a parameter in expression:
> <dtml-call 
> expr="RESPONSE.redirect('02_contratos_altera?codigo=<dtml-var 
> EdtCodigo>')">

You are using DTML inside Python expression.

try

<dtml-call expr="RESPONSE.redirect('02_contratos_altera?codigo=%s)' % 
_['EdtCodigo']">




More information about the Zope mailing list