How can I upload the file using html input file control
How to file upload in mvc? marcel ethan 2089 06 Oct 2014 How can I upload the file using html input file control
You 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.