Hi
I currently use SoftArtisans ( FileUp (version 3.41) software for my website which allows users to upload documents to my site. This was all working fine until I tried uploading something myself and ended up getting an error.
I have recently upgraded my Internet Explorer to version 6.0 and part of my code looks for
As this was working fine with IE 5.5, and someone else in my office using IE 6.0 also had the same error, then I am lead to believe that it is due to my browser.
The code that I use for the form to capture the upload is:
As you can see I set: enctype="multipart/form-data"
Should I set this to something different for IE 6.x?
My only other solution would be to upgrade the FileUp software (but that costs which is why I am posting here first!)
Does anyone have any suggestions or have come across this before? Any help would be gratefully received
I currently use SoftArtisans ( FileUp (version 3.41) software for my website which allows users to upload documents to my site. This was all working fine until I tried uploading something myself and ended up getting an error.
I have recently upgraded my Internet Explorer to version 6.0 and part of my code looks for
Code:
If upl.ContentDisposition <> "form-data" Then
' Error - Incompatibility with browser
'I then display a browser incompatibility message
As this was working fine with IE 5.5, and someone else in my office using IE 6.0 also had the same error, then I am lead to believe that it is due to my browser.
The code that I use for the form to capture the upload is:
Code:
<form action="DocumentSubmit.asp?action=File" enctype="multipart/form-data" method="post" id="frmMain" name="frmMain">
As you can see I set: enctype="multipart/form-data"
Should I set this to something different for IE 6.x?
My only other solution would be to upgrade the FileUp software (but that costs which is why I am posting here first!)
Does anyone have any suggestions or have come across this before? Any help would be gratefully received