7 Jul
2000
7 Jul
'00
10:58 p.m.
John Verzani writes:
Zope has me stumped.
I want to make a _simple_ form and process to add a folder then insert into that folder some properties and an image. Here is what I am trying with my DTML method for processing the form request:
<dtml-call "manage_addFolder(REQUEST['id'],REQUEST['title'])"> <dtml-with "REQUEST['id']"> Try <dtml-with "_[REQUEST['id']]"> <dtml-if image> <dtml-call "manage_addImage('image',image)"> </dtml-if> ....
Dieter