problems with ENCTYPE="multipart/form-data"

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I have a jsp page where I let user browse for a zip file and upload it, I post the form using ENCTYPE="multipart/form-data" and its defined on the form like this

<form name="Upload" ENCTYPE="multipart/form-data"

and user selects the file using the input type which is defined as followin
<input type="FILE" name="FILE1" size="50">

when the form is posted I use com.oreilly.servlet.MultipartRequest to process the request. All this works fine with I.E. SP1
however with the recent upgrades to I.E. this doesn't work any more. The zip file which is uploaded doesn't get unzipped when I try to unzip it.
Does anyone know what the problem is or how to change the code so that it would work with the upgraded I.E. I'm still able to upload the file using I.E. 6 SP1 but doesn't work with newer patches.

would appreciate any help
Thanks
 
Back
Top