How to Upload File in ASP.NET MVC 3.0?
1918
17-Nov-2014
I want to upload file in asp.net mvc. How can I upload the file using html input file control?
Updated on 18-Nov-2014
Anonymous User
18-Nov-2014You don't use a file input control. Server side controls are not used in ASP.NET MVC.
So you would start by creating an HTML form which would contain a file input:
and then you would have a controller to handle the upload: