I\'m growing thin learving mvc3. I have the following code in my controller
[HttpPost] public ActionResult Accreditation(Accreditation accreditation)
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) { ... }