Developer technologies | ASP.NET | ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi guys what should be the problem for my code showing error to the Files see the pictures
If you mouse over the error it'll tell you what is wrong. There is no Files property on Request in ASP.NET Core. Files are accessible from Request.Form.Files. Note that it could be empty so you need to handle the fact that there may be none.
var files = Request.Form?.Files;
if (files?.Any() ?? false)
{
...
}