ASP.NET MVC 6 Interview and Question for Experinced
What is MVC (Model View Controller)? MVC is Model View Controller. it's architectural pattern which separates the representation and user interaction. It’s divided into three sections, Model, View, and Controller. Model :- its represents the real world object and provides data to the View. View :- is responsible for the look and feel all UI Pages. Controller :- is responsible for taking the end user request and loading the appropriate Model and View. Explain MVC application life cycle? Fill route - If the request is the first request the first thing is to fill the route table with routes collection. this filling of route table written in the global.asax file, then MVC requests are mapped to route tables which in turn specify which controller and action to be invoked. Fetch route - Based on the URL sent “UrlRoutingModule” searche the route table to create “RouteData” object, which having the details of which controller and action to invoke. Request...