Enables you to map URLs that does not map to any specific files in a web site. You should add default MVC routes to Application_Start event in Global.asax file as shown in the example below
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MvcApplication : System.Web.HttpApplication | |
{ | |
public static void RegisterRoutes(RouteCollection routes) | |
{ | |
routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); | |
routes.MapRoute( | |
"Default", // Route name | |
"{controller}/{action}/{id}", // URL with parameters | |
new { controller = "Home", action = "Index", id = "" } // Parameter defaults | |
); | |
} | |
protected void Application_Start() | |
{ | |
RegisterRoutes(RouteTable.Routes); | |
} | |
} |
check MSDN page ASP.NET routing for more information.
Provides a collection of routes for ASP.NET routing. This class is derived from Collection<RouteBase>.
You can define custom routes by using RouteBase class. See a tutorial.
introduced in Web API 2 to overcome challenges faced with creating routes with conventional based routings. Uses attributes to define routes.
References
0 comments:
Post a Comment