File Upload ASP.NET MVC 3.0

You don’t use a file input control. Server side controls are not used in ASP.NET MVC. Checkout the following blog post which illustrates how to achieve this in ASP.NET MVC. So you would start by creating an HTML form which would contain a file input: @using (Html.BeginForm(“Index”, “Home”, FormMethod.Post, new { enctype = “multipart/form-data” })) … Read more