Using the HTML5 <input type="file" multiple="multiple"> Tag in ASP.NET
- by Rick Strahl
Per HTML5 spec the <input type="file" /> tag allows for multiple files to be picked from a single File upload button. This is actually a very subtle change that's very useful as it makes it much easier to send multiple files to the server without using complex uploader controls. Please understand though, that even though you can send multiple…