Попробуйте добавить это в View
:
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<input type="file" id="file" name="file" />
<input type="submit" value="upload" />
}
и в controller
файле:
[HttpPost]
public ActionResult Index(HttpPostedFileBase file)
{
return View();
}