Skip to main content

Posts

Showing posts with the label What Is MVC Application Life-Cycle?MVC application Life Cycle Steps

What Is ASP.Net MVC Application Life-Cycle?

What Is MVC? The MVC is a framework, standard pattern for developing Web applications, and MVC framework handled by three objects Model, View, and Controller. MVC Application Life-Cycle - In short - MVC application Life Cycle Steps 1.       Creating the request object - a.       Fill route b.       Fetch route 2.       Request context created 3.       Controller instance created 4.       Creating Response object MVC Application Life Cycle Steps - In detail Firstly, I am going to share the MVC process request and after will discuss the process request life cycle. When you send the request to the MVC application that means you are directly calling the controller's ActionMethod i.e. http://localhost:42955/Customers/Index In the above-requested URL, Customers is a controller and Index is an ActionMetho...