Click here to Skip to main content
15,884,388 members
Articles / Web Development / ASP.NET

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

Rate me:
Please Sign up or sign in to vote.
3.14/5 (5 votes)
11 Apr 2014CPOL1 min read 8.3K   4   4
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)


Written By
Software Developer
India India
Having more than 9 years of development experience in various Microsoft Technologies like :-
ASP.Net, MVC, SQL Server, WCF, MS Commerce Server, Xamarin etc.

Also hands on experience on the client side coding with JavaScript/jQuery and framework like AngularJS. Worked with third party ASP.net controls like Telerik and DevExpress as well.

Very much interested in Microsoft technologies to explore and implement. Now started to helping coders who really need me.

My Blog


Microsoft Technology Master

Programming Communities


JS Fiddle | Stack Overflow

Awards


Microsoft MCTS Certification in ASP.Net 4.0

Comments and Discussions

 
GeneralShort article Pin
Gaurav Aroraa27-Oct-14 11:38
professionalGaurav Aroraa27-Oct-14 11:38 
GeneralMy vote of 2 Pin
Gaurav Aroraa27-Oct-14 11:37
professionalGaurav Aroraa27-Oct-14 11:37 
GeneralMy vote of 2 Pin
Andrew Brown31-Jul-14 4:04
Andrew Brown31-Jul-14 4:04 
GeneralMy vote of 1 Pin
Mahmoud Habib15-Apr-14 21:30
Mahmoud Habib15-Apr-14 21:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.