Skip to content

Instantly share code, notes, and snippets.

@darrelmiller
Created April 26, 2013 16:29
Show Gist options
  • Save darrelmiller/5468554 to your computer and use it in GitHub Desktop.
Save darrelmiller/5468554 to your computer and use it in GitHub Desktop.
config.Routes.Add("default", new TreeRoute("",new TreeRoute("home").To<HomeController>(),
new TreeRoute("contact",
new TreeRoute("{id}",
new TreeRoute("address",
new TreeRoute("{addressid}").To<ContactAddressController>())
).To<ContactController>())
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment