While browsing a website, a user clicks on a button to view their profile. In an ASP.NET Core MVC application, which component would decide what happens next?

  • Controller
  • View
  • Model
  • Database
In an ASP.NET Core MVC application, the Controller component would decide what happens next when a user clicks on a button. The Controller handles user requests and determines the appropriate action, which may involve interacting with the Model to retrieve or update data, and then selecting the appropriate View to render the response.
Add your answer
Loading...

Leave a comment

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