views:

125

answers:

3

Is there any free image uploader control for ASP.NET MVC? Thanks.

+1  A: 

You can use jQuery/JavaScript file upload scripts. First found:

http://www.uploadify.com/ http://www.fyneworks.com/jquery/multiple-file-upload/

What do you mean by image uploader control? What are your requirements?

LukLed
A: 
<input type="file" name="fileUpload"/>

Or did you want something more?

Alun Harford
A: 

In this article , Stephen have showed the good example of using silver light upload control for multiple uploading with progress bar in an aspnet MVC application, worth a look: Upload control in aspnet mvc

tuanvt