You are building a small website using ASP.NET Core MVC. For displaying data to the users, which component of the MVC pattern should you focus on?

  • Model
  • View
  • Controller
  • Routing
In the MVC (Model-View-Controller) pattern, the "View" component is responsible for displaying data to users. It defines the structure and layout of the web pages, presenting data from the model in a user-friendly format. Controllers handle the request processing, but views handle the presentation of data to the users.
Add your answer
Loading...

Leave a comment

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