How to file upload in mvc?
1964
06-Oct-2014
How can I upload the file using html input file control
Updated on 06-Oct-2014
Anonymous User
06-Oct-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.