Skip to content

Instantly share code, notes, and snippets.

@stevejay
Created May 5, 2014 20:36
Show Gist options
  • Save stevejay/e3f843517da56a980ea5 to your computer and use it in GitHub Desktop.
Save stevejay/e3f843517da56a980ea5 to your computer and use it in GitHub Desktop.
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new {controller="Home", action="Index", id=UrlParameter.Optional});
// More routes here.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment