Is there a way to define the file upload controls using a Razor helper in ASP.NET MVC3?
There isn't an html helper for file inputs, but what is wrong with just doing
@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new {enctype = "multipart/form-data"})) { }