Hello there If I have form that has a long list of form variables, is there a shorter way to pass though variables to python script for processing instead of individual listing at the parameter list? TQ in advance.
Either you pass them as POST or GET request. In both cases you must pass them to Zope. -aj --On Montag, 13. Oktober 2003 14:37 Uhr +0800 CY <cyhoong@pc.jaring.my> wrote:
Hello there
If I have form that has a long list of form variables, is there a shorter way to pass though variables to python script for processing instead of individual listing at the parameter list?
TQ in advance.
_______________________________________________ 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 )
If I have form that has a long list of form variables, is there a shorter way to pass though variables to python script for processing instead of individual listing at the parameter list?
You can pull them directly from the context.REQUEST object via the mapping-type access sytax. --jcc
participants (3)
-
Andreas Jung -
CY -
J Cameron Cooper