[Zope] ZPT to Python(script) to a different page

Paolo Dina paolo@php3.it
Fri, 18 Jul 2003 08:59:03 +0200


> If the validation passes,
> I would like the user's browser
> to display different ZPTs based on 
> the script's decision logic.

Try to use redirect.

In case of error you return an error message; why in case of succes 
you don't follow this way?:

return r.RESPONSE.redirect('success.html')
( where r = context.REQUEST )


> thanks in advance

Hope this helps.

Paolo