Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

ASP.NET MVC 3 routing

0.00/5 (No votes)
7 Jul 2013 1  
MVC routingIn ASP.NET MVC 3 one of the main parts is routing. The routing is helps to map the particular view and particular controller.When we

This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.

MVC routing

In ASP.NET MVC 3 one of the main parts is routing. The routing is helps to map the particular view and particular controller.
When we create an ASP.NET MVC 3 application routing is preconfigured in web.config and Global.asax
public static void RegisterRoutes(RouteCollection routes)
{
         routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
         routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Account", action = "Login", id =     UrlParameter.Optional }
            );
}
protected void Application_Start()
{
      RegisterRoutes(RouteTable.Routes);
}

The above code shows preconfigured routing on Global.asax.
When we run the our an ASP.NET MVC 3 application the request comes to "Application_Start()"
 The method inside we called the routing configuration method so at the same time RegisterRoutesmethod also fired and registered the routing configurations.
RegisterRoutes method has some default routing tables, the default routing table has some segments, and the segments have arguments.
First we look at the first segment "name". It is the name of the routing table.
Second segment "URL" have some arguments, the first argument mention the controller name second argument mention the action method and the third argument mention the query string .
The third segment "defaults" provide the some default values. Occasionally we don't have provided any controller, action and id that time it would be took the given default values.

More detail about routing  read the scottgu blog 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here