Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

What is ASP.NET MVC Routing and Why Is It Needed, Explained.

3.14/5 (5 votes)
11 Apr 2014CPOL1 min read 8.8K  
What is ASP.NET MVC Routing and why is it needed

Introduction

The ASP.NET Routing Framework is at the core of every ASP.NET MVC request and it is simply a pattern-matching system. At the application start-up, it registers one or more patterns with route table of the framework to tell it what to do with the pattern matching requests. For routing, the main purpose is to map URLs to a particular action in a specific controller.

When the routing engine receives any request, it first matches the request URL with the patterns already registered with it. If it finds any matching pattern in route table, it forwards the request to the appropriate handler for the request. If the request URL does not match with any of the registered route patterns, the routing engine returns a 404 HTTP status code.

Where to Configure

  • Global asax

How to Configure

ASP.NET MVC routes are responsible for determining which controller methods need to be executed for the requested URL. The properties for this to be configured are:

  • Unique Name: A name unique to a specific route
  • URL Pattern: A simple URL pattern syntax
  • Defaults: An optional set of default values for each segment defined in URL pattern
  • Constraints: A set of constraints to more narrowing the URL pattern to match more exactly

The RegisterRoute method in RouteConfig.cs file is as follows:

C#
public class RouteConfig
 {
public static void RegisterRoutes(RouteCollection routes)
 {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); // ignore route with extension .axd

 routes.MapRoute(
 name: "Default", // Name of the route
url: "{controller}/{action}/{id}", // pattern for the url
 defaults: new { controller = "Login", action = "Index", 
     id = UrlParameter.Optional } // default values for each section
 );
 }
 }

Then in Global.asax.cs file, call this on application start event handler so that this will be registered on application start itself:

C#
protected void Application_Start()
{
RouteConfig.RegisterRoutes(RouteTable.Routes);
}

How Routing Engine Works

Image 1

Route Matching

Image 2

Hope this will give a clear understanding on what is routing and how routing engine works...

CodeProject

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)