---
title: "Explain the process of  MVC application life cycle?"  
description: "Explain the process of  MVC application life cycle?"  
author: "Manish Kumar"  
published: 2017-06-13  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/23263/explain-the-process-of-mvc-application-life-cycle  
category: "c#"  
tags: ["mvc3"]  
reading_time: 3 minutes  

---

# Explain the process of  MVC application life cycle?

\

web application has two main execution steps, first understanding the request and depending on the type of the request sending out appropriate response. MVC application life cycle is not different it has two main phases, first creating the request object and second sending our response to the browser.

Creating the request object:

The request object creation has four major steps. The following is the detailed explanation of the same.

**1: Fill route**

MVC requests are mapped to route tables which in turn specify which controller and action to be invoked. So if the request is the first request the first thing is to fill the route table with routes collection. This filling of route table happens in the global.asax file.

\

## 2: Fetch route

Depending on the URL sent “UrlRoutingModule” searches the route table to create “RouteData” object which has the details of which controller and action to invoke.

\

## 3: Request context created

The “RouteData” object is used to create the “RequestContext” object.

\

## 4: Controller instance created

This request object is sent to “MvcHandler” instance to create the controller class instance. Once the controller class object is created it calls the “Execute” method of the controller class.

Creating Response object

This phase has two steps executing the action and finally sending the response as a result to the view.

## Answers

### Answer by Manish Kumar

\

web application has two main execution steps, first understanding the request and depending on the type of the request sending out appropriate response. MVC application life cycle is not different it has two main phases, first creating the request object and second sending our response to the browser.

Creating the request object:

The request object creation has four major steps. The following is the detailed explanation of the same.

**1: Fill route**

MVC requests are mapped to route tables which in turn specify which controller and action to be invoked. So if the request is the first request the first thing is to fill the route table with routes collection. This filling of route table happens in the global.asax file.

\

## 2: Fetch route

Depending on the URL sent “UrlRoutingModule” searches the route table to create “RouteData” object which has the details of which controller and action to invoke.

\

## 3: Request context created

The “RouteData” object is used to create the “RequestContext” object.

\

## 4: Controller instance created

This request object is sent to “MvcHandler” instance to create the controller class instance. Once the controller class object is created it calls the “Execute” method of the controller class.

Creating Response object

This phase has two steps executing the action and finally sending the response as a result to the view.


---

Original Source: https://www.mindstick.com/interview/23263/explain-the-process-of-mvc-application-life-cycle

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
