In an ASP.NET Core project, which folder typically contains static files like images, scripts, and stylesheets?

  • Controllers
  • Views
  • Models
  • wwwroot
The correct answer is wwwroot. In ASP.NET Core, the wwwroot folder is the designated location for storing static web assets such as images, scripts, and stylesheets. These assets can be directly accessed by clients, making it a convenient place to store files that need to be served to the browser without going through a controller or action.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *