在我的视图中,我有这个
<label for="FotosLugar">Foto</label>
<input type="file" name="FotosLugar" id="FotosLugar"/>
在我的控制器中我有这个:
[HttpPost]
public ActionResult Create(Lugar lugar, HttpPostedFileBase FotosLugar)
{
if (FotosLugar.ContentLength > 0)
{
var fileName = Path.GetFileName(FotosLugar.FileName);
var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
FotosLugar.SaveAs(path);
}
return View(lugar);
}
但是当我调试HttpPostedFileBase时,FotosLugar为null。