I have a form where a user can upload a file to the sites download section. However when the form is submitted I get this error, without the request ever making it to the ac
You could try removing the HttpPostedFileBase from the controller method and use Request.Files[0] and see if that makes a difference.
Honestly though I dont'see why this would be failing unless there is something that is causing it within your Model.
Also, nit picking here but DownloadFile should be downloadFile on your form and in your controller method.