You're new to ASP.NET Core MVC and are wondering where to place the HTML files you've designed for your application. In a default MVC project structure, where should these files go?

  • Views
  • Models
  • Controllers
  • Middleware
In a default ASP.NET Core MVC project structure, HTML files should be placed in the 'Views' folder. The 'Views' folder contains the user interface components of your application, including HTML templates that are rendered to generate web pages.
Add your answer
Loading...

Leave a comment

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