How to upload multiple images with just 1 click?

Asked

Viewed 2,219 times

0

I’m studying uploading images and files, and I can upload 1 image, and show it on the screen, but I’m interested in uploading multiple images with only one button, just like this web application http://www.photojoiner.net/. How to upload multiple images?

am using Asp.net.mvc 5.1.

2 answers

2


You can use jQuery File Upload plugin created by blueimp:

http://blueimp.github.io/jQuery-File-Upload/

You can install the plugin by nuget. Just go to Package Manager, and search for blueimp. The plugin itself will appear, and some samples of how to use with MVC.

It is also possible to install from the console. Below the respective pages in the nuget gallery:

2

You can also indicate on <input> the attribute multiple="true", so you can select multiple images at the same time.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.