2

I would like to find out if there are any good controls available whereby I can upload files (upto 2GB) in a .net mvc2 application. The main issue is that I want to be able to retrieve the upload progress information from this control and have my own progress bar (which is already used in the application for other purposes) to display this information. Any help will be appreciated!

Ali
  • 67
  • 1
  • 10

1 Answers1

0

Plupload is a popular plugin. You may also checkout an example.

Community
  • 1
  • 1
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
  • I checked out the above example in detail. Its a mashup of csharp, JScript, Silverlight and php other than flash and html5 solutions. Do you know something that is more of a .net only solution? It can have JScript or JQuery but not a complete mashup of 5 or 6 technologies. – Ali Apr 01 '11 at 07:20
  • @Ali, the standard solution is to place a simple `` tag and upload. There is no progressbar though. You will need to implement it yourself. The good thing about plupload is that it detects which of those technologies are available to the client and fallbacks progressively. – Darin Dimitrov Apr 01 '11 at 07:29
  • this worked great and using Plupload, I was able to do the above tasks. – Ali Apr 18 '11 at 07:54