Skip to content

Instantly share code, notes, and snippets.

@rrreese
Created November 17, 2012 09:33
Show Gist options
  • Save rrreese/4094495 to your computer and use it in GitHub Desktop.
Save rrreese/4094495 to your computer and use it in GitHub Desktop.
Registering Routes in ASp.NET MVC
public static void RegisterRoutes(RouteCollection routes)
{
routes.MapRoute
(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment