Reputation: 11
I have done the file upload process in MVC asp.net, Now i want show a Progress bar as file upload takes pretty much time..
Please let me know how to implement progress bar using Jquery or something like UpdatePanel. and i want to implement it with the same existing code in MVC .
Upvotes: 1
Views: 9245
Reputation: 2943
I suggest go with Uploadify: http://www.uploadify.com/
I used it before for one MVC project, it's very convenient and it's more powerful than just a progress bar, only with few simple code and then you can make it happen.
Or you can try to do it yourself with this: http://www.codeproject.com/Questions/290359/Multiple-File-upload-in-mvc3-with-progress-bar
Upvotes: 1