Click here to Skip to main content
15,882,114 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I am looking for an image upload control that allows multifile selection in the upload window and works on IE. Preferably no flash content. Any Advice please ?
Posted

 
Share this answer
 
Comments
abounasser 16-Nov-11 10:07am    
Hey RaisKazi,
Thanks for your reply. I was wondering if we can hit browse once and select all the files. I don't want to click on browse for each file.
Thanks
Dave Kreskowiak 28-Oct-14 9:20am    
Depending on the version of IE you're supporting, this may not be possible. For example, Telerik's Upload control only supports multiple file select on IE 10 and above. On IE 9 and below, the user MUST select one file at a time to upload.
Hi!

Try one of these solutions:

Aurigma Image Uploader
JumpLoader
 
Share this answer
 
You can use
C#
 AjaxFileUpload control
<asp:ajaxfileupload id="ajaxMultiUpload" runat="server" xmlns:asp="#unknown" />
 
Share this answer
 
XML
 For IE Include the below meta tag inside the head section of your document before everything else.
<meta http-equiv="X-UA-Compatible" content="IE=edge">

Or you can do it in the web.config file by sending a custom header.
<system.webServer>
   <httpProtocol>
      <customHeaders>
         <add name="X-UA-Compatible" value="IE=edge" />
      </customHeaders>
   </httpProtocol>
</system.webServer>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900