I want to create a DTMLDocument which has the Content from a File on the local filesystem. That´s the same what Zope can do in the manage- mode but in my case it doesn´t match. I have createth following form: <form action="homepage_menue_links_addForm2"><table> <tr><th>Id</th> <td><input type=text name=temp_id></td> </tr> <tr><th>Titel</th> <td><input type=text name=temp_title></td> </tr> <tr><td></td> <tr><th>Beschreibung</th> <td><textarea name=temp_beschreibung rows="10" cols="50"></textarea></td> </tr> <td><input type=submit value=" Add "></td></tr> </table></form> Then the following Form is called: <FORM ACTION="homepage_menue_links_add" METHOD="GET" ENCTYPE="multipart/form-data"> ..... <INPUT TYPE="file" NAME="temp_file:string" SIZE="25" VALUE=""> ... The following method should add a DTMLDocument with the content of the file: <dtml-let new="homepage_menue_links.createInObjectManager(REQUEST ['temp_id'],REQUEST)"> <dtml-call expr="new.manage_addDTMLDocument (temp_id,temp_title,temp_file)"> ... </dtml-let> But Zope adds a DTMLDocument with the path of the file, like 'C:\folder\file.html' Does anybody know what is wrong? Steffen Steffen