[Zope] redirect after python script

Carlos de la Guardia cguardia@aldeasystems.com
Thu, 7 Mar 2002 18:20:27 -0600 (CST)


You can do that with:

number=5
redirect_url='viewCustomer?id='+number
context.REQUEST.RESPONSE.redirect(redirect_url)

Carlos de la Guardia
Aldea Systems


On Thu, 7 Mar 2002 17:59:25 -0500 Chad Nantais <cnantais@rednaxel.com> wrote:

> I have a script that processes a form. I want that script to send a
> value to
> the url of a page template (eg. viewCustomer?id=5).
> 
> What line of python will do this?
> 
> 
>