If you were to create a page in an ASP.NET Core MVC application that displays a list of movies, which component would be responsible for determining how this list is presented to the user?

  • View
  • Controller
  • Model
  • Middleware
The View component in ASP.NET Core MVC is responsible for determining how data is presented to the user. It defines the layout and structure of the page, including how the list of movies is displayed. The Controller manages user requests and interacts with the Model to retrieve the necessary data.
Add your answer
Loading...

Leave a comment

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