Hi again
Okay, I'm doing the following in my form handler, and its telling ym the
form is NOT multipart
boolean isMultipart = FileUpload.isMultipartContent(request);
if (isMultipart){
System.out.println("Form is multipart");
}else{
System.out.println("Form is NOT multipart");
}
a snippet from my JSP is as follows
<form name="form" method="POST" enctype="multipart/form-data">
<input type="text" name="root.wizard.step#fileLocation" value=""
title="Enter the location of File" size="50"/>
</form>
Is there something I'm missing?
Thanks
--
-Dave
[EMAIL PROTECTED]