---
title: "What is Route in MVC?"  
description: "What is Route in MVC?"  
author: "Nishi Tiwari"  
published: 2020-02-11  
updated: 2020-09-20  
canonical: https://www.mindstick.com/interview/33698/what-is-route-in-mvc  
category: "asp.net mvc"  
tags: ["asp.net mvc"]  
reading_time: 1 minute  

---

# What is Route in MVC?

The route is a URL pattern that is mapped to a handler. A handler can be a physical file, such as an .aspx file in a Web Forms application and can also be a class that processes the request, such as a controller in an MVC application so to define a route, we create an instance of the route class by specifying the URL pattern, the handler, and optionally a name for the route.

## Answers

### Answer by Nishi Tiwari

The route is a URL pattern that is mapped to a handler. A handler can be a physical file, such as an .aspx file in a Web Forms application and can also be a class that processes the request, such as a controller in an MVC application so to define a route, we create an instance of the route class by specifying the URL pattern, the handler, and optionally a name for the route.


---

Original Source: https://www.mindstick.com/interview/33698/what-is-route-in-mvc

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
