MVC 6 HttpPostedFileBase?
MVC 6 used another mechanism to upload files. You can get more examples on GitHub or other sources. Just use IFormFile as a parameter of your action or a collection of files or IFormFileCollection if you want upload few files in the same time: public async Task<IActionResult> UploadSingle(IFormFile file) { FileDetails fileDetails; using (var reader … Read more