Chinmaya Dash
What is routing in MVC?
By Chinmaya Dash in .NET on Oct 13 2016
  • Manav Pandya
    Feb, 2018 8

    to work with url and effective navigation between pages is called routing

    • 2
  • Ritesh Singh
    Aug, 2017 22

    Routing is a mechanism in MVC that decides which action method of a controller class to execute. Without routing there's no way an action method can be mapped. to a request. Routing is a part of the MVC architecture so ASP.NET MVC supports routing by default.

    • 2
  • Dhrutika Rathod
    May, 2018 16

    Basically, Routing is a pattern matching system that monitors the incoming request and figures out what to do with that request. At runtime, Routing engine uses the Route table for matching the incoming request's URL pattern against the URL patterns defined in the Route table.

    • 1
  • Chinmaya Dash
    Oct, 2016 13

    Routing helps you to define a URL structure and map the URL with the controller.For instance let’s say we want that when a user types “http://localhost/View/ViewCustomer/”, it goes to the “Customer” Controller and invokes the DisplayCustomer action. This is defined by adding an entry in to the routes collection using the maproute function. Below is the underlined code which shows how the URL structure and mapping with controller and action is defined.routes.MapRoute("View", // Route name"View/ViewCustomer/{id}", // URL with parametersnew { controller = "Customer", action = "DisplayCustomer", id = UrlParameter.Optional }); // Parameter defaults

    • 1
  • Dhaval Patel
    Sep, 2018 28

    Routing is a mechanism in MVC that decides which action method of a controller class to execute. Without routing there's no way an action method can be mapped. to a request. Routing is a part of the MVC architecture so ASP.NET MVC supports routing by default

    • 0
  • Rajan Mishra
    Sep, 2018 26

    for asp.net mvc routing is a path selection mechanism which is written in RouteConfig.cs class file which is present inside the application.Its main task is to create the route table which is invoked when a http request comes into the scenario and call the action method of the desired controller.

    • 0
  • Jignesh Kumar
    Jun, 2018 11

    ASP.NET introduced Routing to eliminate needs of mapping each URL with a physical file. Routing enable us to define URL pattern that maps to the request handler. Routing is URL pattern matching technique which manages incoming request and based on controller name and action method name it maps to URL and executes action method.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS