InterviewSolution
| 1. |
What is ASP.NET MVC? |
|
Answer» ASP.NET MVC is a LIGHTWEIGHT framework for developing WEB and mobile applications. This framework divides an application into the three MAIN components that make up MVC(Model, View, and Controller). In this MVC pattern for WEBSITES, action performance or data retrieval will be DONE when requests will be sent to a Controller that is in co-ordinance with the Model for doing such tasks. The model will retrieve the data and also store it in the database. The Controller selects the View for displaying and provides it along with the Model. The final page will be rendered by the View based on the data present in the Model. MVC along with ASP.NET will give you a powerful and patterns-based way of developing dynamic websites as it enables a separation of concerns. |
|