Маршрут:
routes.MapRoute(
"Items", // Route name
"{controller}/{action}/{id}", // URL with parameters
new {controller = "Item", action = "Index", id = UrlParameter.Optional} // Parameter defaults
);
htmlhelper:
@Html.ActionLink("Chairs", "List", "Item", new {id="Chairs"}, null)
Генерируемая ссылка:
http://localhost:57899/Item/List?id=Chairs
Что я хочу показать:
http://localhost:57899/Item/List/Chairs
Как это сделать?