container.REQUEST.form['id'] = 1
return context.index_html(container.REQUEST)


then I have access to request/form/id within the page
template index_html.

Now I must redirect instead of returning like

return
container.REQUEST.RESPONSE.redirect('index_html')
And what about session:

in first script:

container.REQUEST.SESSION.set('myid', 1)

and in the second script:

container.REQUEST.SESSION.get('myid', -1)

You may want to remove myid from session in the second script.

--
Maciej Wisniowski


_______________________________________________
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