I have a web application that is currently using Flash. This application allows the user to select multiple files from their computer and click download. Then we upload these files to our server. I need to update our application to use HTML 5.
My question is: what is the recommended approach for downloading multiple files with HTML 5? I am using ASP.NET MVC 3 on my server.
Thanks!
You want to use this, say, a form that allows the user to upload files:
<input name="uploads[]" type="file" multiple="true">
Then in the backend you can upload files as an array containing different files.
Source: https://habr.com/ru/post/905482/More articles:How to use pageinit correctly? - jquery-mobileWhy is firing fired twice? - jqueryArgument passing in .sh scripts - parameter-passingWhy does 'this' in a jquery chain chain call a DOM element? - javascriptASP.NET MVC 3: Support for loading multiple HTML5 files? - html5https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/905483/css-to-target-windows-phone-7&usg=ALkJrhjIdf33tPACs_njvRC3HGO4yU9rVgWhy are my XAML controls not showing up in code? - c #c.apply is not a function - javascriptJava Swing Animation Loading - javaNSDateFormatter returns invalid date from string - iosAll Articles