Reputation: 13
I need to implement a file(s) upload functionality using ASP.NET MVC and AJAX. I would basically like to give the user an option to select single/multiple files to upload, show a summary of selected files and finally upload them to the server.
Are there any plugins/libraries that I can use? Something similar to jQuery UI - Accordion etc.?
Upvotes: 1
Views: 2326
Reputation: 1854
There are many jQuery-based plugins with Ajax feature. I think every one could be embedded into your asp.net mvc app. Here are several of them: http://www.webdeveloperjuice.com/2010/02/13/7-trusted-ajax-file-upload-plugins-using-jquery/
The Accordion plugin is not for upload files, it's just for compact showing of information.
Upvotes: 1
Reputation: 6361
The Upload component in the Telerik library is pretty good.
http://demos.telerik.com/aspnet-mvc/upload
Upvotes: 1