Which default folder in an ASP.NET Core web application is used to store and serve static files like CSS, JavaScript, and images?

  • wwwroot
  • Views
  • Controllers
  • Models
The default folder for storing and serving static files in an ASP.NET Core web application is the 'wwwroot' folder. Files placed in this directory can be directly accessed by clients, making it an ideal location for assets like CSS, JavaScript, and images.
Add your answer
Loading...

Leave a comment

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