problems with ENCTYPE="multipart/form-data"

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top