Skip to main content

What Is ASP.NET MVC Routing ?

What Is Routing?

The MCV Routing is a pattern matching system that matches all browser’s incoming requests to the registered URL patterns residing in the RouteTable.


When the MVC application starts, it registers patterns to the RouteTable to tell the routing engine to give a response to the requests that match these patterns.


An application has only one RouteTable.

Routes can be configured in RouteConfig class.

Multiple custom routes can also be configured.

The route must be registered in Application_Start event in the Global.ascx.cs file.

Each MVC application has default routing for the default HomeController.

We can also set custom routing and the RouteConfig class.

The three segments that is important for routing is - {controller}/{action}/{id}


RouteConfig class

An example for Register Routes -
public class RouteConfig
{
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );
    }
}

Register RouteConfig in Global.asax

protected void Application_Start() 

      AreaRegistration.RegisterAllAreas();  

      RouteConfig.RegisterRoutes(RouteTable.Routes);  

}  

Types of Routing

There are 2 types of Routing in MVC application

1.     Conventional or Traditional Routing (Using Routing Config)

2.     Attribute Routing (Available in MVC 5)

 

Conventional or Traditional Routing (Using Routing Config)

Conventional or Traditional Routing also is a pattern matching system for URLs that maps the incoming request to the particular controller and action method.

We set all the routes in the RouteConfig file.

RouteConfig file is available in the App_Start folder.

We need to register all the routes to make them operational.

 

Attribute Routing (Available in MVC 5)

What Is Attribute based Routing?
MVC 5 supports a new type of routing that called attribute routing. It is used to define routes.

Enable Attribute Routing - If you want to use Attribute Routing, you must enable it by calling MapMvcAttributeRoutes on the RouteCollection.

public class RouteConfig
{
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
      
        //Enables Attribute Routing
        routes.MapMvcAttributeRoutes();
    }
}

Defining a Route - A route attribute has to be defined on top of an action method or on the top of a controller.

The Example looks like,
public class HomeControllerBaseController
{
  [Route("User/GetUsers")]
  public ActionResult GetUsers(int Id)
  {
      return View();
  }
}

Custom Routes -
public class RouteConfig
{
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            name"User",
            url"User/{id}",
            defaultsnew { controller = "User"action = "Index"}
        );

        routes.MapRoute(
            name"Default",
            url"{controller}/{action}/{id}",
            defaultsnew { controller = "Home"action = "Index"id = UrlParameter.Optional }
        );
    }
}

What is RoutePrefix?

You may see that many routes have the same portion from their start; it means their prefixes are the same.

For example:

1.     Home/User

2.     Home/Teacher

Both the above URLs have the same prefix which is Home. So, rather than repeatedly typing the same prefix, again and again, we use RoutePrefix attribute.

This attribute will be set at the controller level.

 

See the below example,

 

    [RoutePrefix("Home")] 

    public class HomeController : Controller 

    { 

        [Route("User/{id= 1}")] 

        public string User(int id) 

        { 

            return $"User ID {id}"; 

        } 

  

        [Route("Teacher")] 

        public string Teacher() 

        { 

            return "Teacher’s method"; 

        } 

    }  

In the above code, RoutePrefix is set to controller level and on action methods, we don’t have to use Home prefix again and again.


What is MapRoute?

The MapRoute is use to add the new route in the Route collection.


By Anil Singh | Rating of this article (*****)

Popular posts from this blog

nullinjectorerror no provider for httpclient angular 17

In Angular 17 where the standalone true option is set by default, the app.config.ts file is generated in src/app/ and provideHttpClient(). We can be added to the list of providers in app.config.ts Step 1:   To provide HttpClient in a standalone app we could do this in the app.config.ts file, app.config.ts: import { ApplicationConfig } from '@angular/core'; import { provideRouter } from '@angular/router'; import { routes } from './app.routes'; import { provideClientHydration } from '@angular/platform-browser'; //This (provideHttpClient) will help us to resolve the issue  import {provideHttpClient} from '@angular/common/http'; export const appConfig: ApplicationConfig = {   providers: [ provideRouter(routes),  provideClientHydration(), provideHttpClient ()      ] }; The appConfig const is used in the main.ts file, see the code, main.ts : import { bootstrapApplication } from '@angular/platform-browser'; import { appConfig } from ...

How To convert JSON Object to String?

To convert JSON Object to String - To convert JSON Object to String in JavaScript using “JSON.stringify()”. Example – let myObject =[ 'A' , 'B' , 'C' , 'D' ] JSON . stringify ( myObject ); ü   Stayed Informed –   Object Oriented JavaScript Interview Questions I hope you are enjoying with this post! Please share with you friends!! Thank you!!!

List of Countries, Nationalities and their Code In Excel File

Download JSON file for this List - Click on JSON file    Countries List, Nationalities and Code Excel ID Country Country Code Nationality Person 1 UNITED KINGDOM GB British a Briton 2 ARGENTINA AR Argentinian an Argentinian 3 AUSTRALIA AU Australian an Australian 4 BAHAMAS BS Bahamian a Bahamian 5 BELGIUM BE Belgian a Belgian 6 BRAZIL BR Brazilian a Brazilian 7 CANADA CA Canadian a Canadian 8 CHINA CN Chinese a Chinese 9 COLOMBIA CO Colombian a Colombian 10 CUBA CU Cuban a Cuban 11 DOMINICAN REPUBLIC DO Dominican a Dominican 12 ECUADOR EC Ecuadorean an Ecuadorean 13 EL SALVA...

Encryption and Decryption Data/Password in Angular

You can use crypto.js to encrypt data. We have used 'crypto-js'.   Follow the below steps, Steps 1 –  Install CryptoJS using below NPM commands in your project directory npm install crypto-js --save npm install @types/crypto-js –save After installing both above commands it looks like  – NPM Command  1 ->   npm install crypto-js --save NPM Command  2 ->   npm install @types/crypto-js --save Steps 2  - Add the script path in “ angular.json ” file. "scripts" : [                "../node_modules/crypto-js/crypto-js.js"               ] Steps 3 –  Create a service class “ EncrDecrService ” for  encrypts and decrypts get/set methods . Import “ CryptoJS ” in the service for using  encrypt and decrypt get/set methods . import  {  Injectable  }  from ...

Angular Testing Questions and Answers | 9, 8, 7, 6

What Is Testing? The testing is a tools and techniques for a unit and integration testing Angular applications . Why Test? Tests are the best ways to prevent software bugs and defects. How to Setup Test in Angular Project? Angular CLI install everything you need to test an Angular application. This CLI command takes care of Jasmine and karma configuration for you. Run this CLI command- ng test The test file extension must be “.spec.ts” so that tooling can identify the test file. You can also unit test your app using other testing libraries and test runners. Types of Test – The all great developer knows his/her testing tools use. Understanding your tools for testing is essential before diving into writing tests. The Testing depends on your project requirements and the project cost. The types of Testing looks like - 1.       Unit Test 2.       Integration Test 3.       En...