我的模型没有在Asp.net Mvc 4中绑定

时间:2013-02-19 01:22:41

标签: c# asp.net asp.net-mvc entity-framework

在我的视图中,我有这个

     <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。

0 个答案:

没有答案