On Wed, May 18, 2005 at 07:32:29PM -0400, Ken Winter wrote:
> The difference between this and the deletion example is that this form
> (personform.htm) need to be called with an argument, giving the person_id
> that identifies the record it is supposed to display.  I have tried a number
> of ways to sneak this argument in, but my limited experience with
> Zope/Python syntax has left me unable to guess the right trick.

You can append it to the url as a query parameter.
e.g.:

response.redirect('some_page?some_parameter=%s' % some_value)
 
-- 

Paul Winkler
http://www.slinkp.com
_______________________________________________
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )

Reply via email to