0

I am trying to upload multiple files a t a time and used the following html code.

<input type="file" name="file" multiple/>

It is working well in all other browsers except IE.I am using version 9 and above.If i want to make it work what are the changes required.Suggest please.

Thanks in advance.

SRI
  • 35
  • 9

1 Answers1

1
<input type="file" name="file" multiple/>

The multiple attribute is new in HTML5 (Reference)

Here is a reference for multiple

Versions supporting `multiple` attribute

Chrome    Edge   Firefox   Opera   Safari
6.0       10.0   3.6       11.0    5.0

Why it doesn't work with Internet Explorer ?

Uploading multiple files is a specific part of HTML5 that none of the Internet Explorers support. Here is a reference to it. Though , IE 10.0 has started supporting it.


I found some related resources here and here


According to all above statistics , I might like to suggest you to read the second post of this which uses certain alternatives of multiple attribute :

If you can't or don't want to use multiple INPUT TYPE=FILE controls, you must use Flash or Silverlight or a custom ActiveX control