Hi,
Hi have a raduploadcontrol as below :
File upload works perfectly fine in Firefox.
However when I try the same thing in IE it seems that there is no instance of the uploaded file available in the collection
Take a look at the firefox/ie images I've uploaded and you'll see what I mean.
So Basically the radupload1.uploadedfiles collection is returning null in IE, and the correct value in Firefox (also works fine in Opera)
Does anyone have any ideas ?
Its driving me crazy.
Hi have a raduploadcontrol as below :
<telerik:RadUpload ID="RadUpload1" runat="server" AllowedFileExtensions=".jpeg,.gif,.png,.jpg" ControlObjectsVisibility="None" OverwriteExistingFiles="True" AllowedMimeTypes="image/png,image/jpeg,image/gif"></telerik:RadUpload>File upload works perfectly fine in Firefox.
However when I try the same thing in IE it seems that there is no instance of the uploaded file available in the collection
Take a look at the firefox/ie images I've uploaded and you'll see what I mean.
For Each f As UploadedFile In RadUpload1.UploadedFiles
strNewMasterFilename = Server.MapPath("~/blogs/" & strActiveBlogName & "/" & strActiveBlogName & "_masterimage") & f.GetExtension
f.SaveAs(strNewMasterFilename, True)NextSo Basically the radupload1.uploadedfiles collection is returning null in IE, and the correct value in Firefox (also works fine in Opera)
Does anyone have any ideas ?
Its driving me crazy.