Zack Peterson
Zack Peterson

Reputation: 57373

Html helper for <input type="file" />

Is there a HTMLHelper for file upload? Specifically, I am looking for a replace of

<input type="file"/>

using ASP.NET MVC HTMLHelper.

Upvotes: 0

Views: 2946

Answers (1)

user151323
user151323

Reputation:

No, none. You have to do it on your own.

Have a look at this article: A Back To Basics Case Study: Implementing HTTP File Upload with ASP.NET MVC including Tests and Mocks

Upvotes: 4

Related Questions