Skip to content

Instantly share code, notes, and snippets.

@erichexter
Created November 24, 2012 20:08
Show Gist options
  • Save erichexter/4141226 to your computer and use it in GitHub Desktop.
Save erichexter/4141226 to your computer and use it in GitHub Desktop.
Example of registering child menus.
var routes = new System.Web.Routing.RouteCollection();
routes.MapNavigationRoute<HomeController>("Home", c => c.Index())
.AddChildRoute<HomeController>("Logout", c => c.Logout())
.AddChildRoute<HomeController>("Foobar", c => c.ChangePassword());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment