tags:

views:

189

answers:

2

Is file upload control is available in html helper class in asp.net mvc if not then how should we use file upload control

A: 

Use SlickUpload. I'm not the owner or some shill paid by the owner. It's just a great product.

http://krystalware.com/Products/SlickUpload/

sohtimsso1970
Does it work with Asp.Net MVC?
Amitabh
Yes. Click that link. It mentions MVC support.
sohtimsso1970
+1  A: 

See here.

You need to make an <input type="file" /> element in your form, then check Request.Files in the controller.

SLaks