You are creating a website and want to add a folder for storing images, scripts, and CSS files. Which default folder in ASP.NET Core would you typically use?

  • wwwroot
  • App_Data
  • Views
  • Controllers
In ASP.NET Core, the 'wwwroot' folder is the default location for storing static web assets like images, scripts, and CSS files. These assets can be directly served to clients without the need for additional routing.
Add your answer
Loading...

Leave a comment

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