Is there a HTMLHelper for file upload? Specifically, I am looking for a replace of
<input type="file"/>
using ASP.NET MVC HTMLHelper.
Or, If I use
using (Html.BeginForm())
What is the HTML control for the file upload?
|
Is there a HTMLHelper for file upload? Specifically, I am looking for a replace of
using ASP.NET MVC HTMLHelper. Or, If I use
What is the HTML control for the file upload?
| ||||
|
feedback
|
|
HTML Upload File ASP MVC 3. Model: (Note that FileExtensionsAttribute is available in MvcFutures. It will validate file extensions client side and server side.)
HTML View:
Controller action:
| |||
|
feedback
|
|
I had this same question a while back and came across one of Scott Hanselman's posts: Implementing HTTP File Upload with ASP.NET MVC including Tests and Mocks Hope this helps. | ||||
feedback
|
|
You can also use:
| |||
|
feedback
|
|
To use
| |||||||
feedback
|