Uploading files with MVC 3

后端 未结 3 1160
走了就别回头了
走了就别回头了 2021-01-15 01:23

I\'m growing thin learving mvc3. I have the following code in my controller

    [HttpPost]
    public ActionResult Accreditation(Accreditation accreditation)         


        
3条回答
  •  滥情空心
    2021-01-15 01:57

    Get your posted file directly in action:

    Here is discussion on SO: MVC 3 file upload and model binding

    [HttpPost]
    public ActionResult Accreditation(Accreditation accreditation, HttpPostedFileBase Passport)
    {
        ...
    }
    

提交回复
热议问题