Re: [Zope] passing parameters from form to script

2005-08-29 Thread Peter Bengtsson
2 options: - don't have a parameter on your 'paramtest' script and instead iterate on context.REQUEST.form.items() - keep a hidden variable in the form creation. eg. then make 'keys' the only parameter of 'paramtest' and use this like this: for key in keys: value = context.REQUEST[k

[Zope] passing parameters from form to script

2005-08-29 Thread Roman Klesel
Hello everyone, I'm dynamically generate a form e.g like this: bla How can I process the parameters with the target script? I don't know how many parameters will be passed to the