I have this sole route in my app:
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = ""}
);
This works great for URLs like:
/Blah/Index
/Blah/Create
/Blah/Details/5
I want to add text to that last one like SO does:
/Blah/Details/5/Page-Title-Here-Or-Whatever
So my question is:
What should my routes look like to accomplish this? (or if it doesn't have anything to do with routes...what do I do?)