The Route:

            routes.MapRoute(
            "Items", // Route name
            "{controller}/{action}/{id}", // URL with parameters
            new {controller = "Item", action = "Index", id = UrlParameter.Optional} // Parameter defaults
            );

The htmlhelper:

@Html.ActionLink("Chairs", "List", "Item", new {id="Chairs"}, null)

The link it generates:

http://localhost:57899/Item/List?id=Chairs

What I want it to show:

 http://localhost:57899/Item/List/Chairs

How to do that?

link|improve this question

What's the signature on your ItemController's List action? – David Aug 24 '11 at 13:58
@David Signature?public ActionResult List(string id) { return View(_repository.GetItems(id)); } – Kasper Skov Aug 24 '11 at 14:24
feedback

3 Answers

Instead of using ActionLink what happens if you try the following?

@Html.RouteLink("Items", new { id = "Chairs" })
link|improve this answer
feedback

You call Html.RouteLink (not Action Link) and map an additional route under your generic like this:

routes.MapRoute(
        "ChairsRoute", // Route name
        "Item/List/{id}", // URL with parameters
        new {controller = "Item", action = "Index", id = UrlParameter.Optional} // Parameter defaults
        );

when you call RouteLink, you'll simply pass that "ChairsRoute" name

link|improve this answer
feedback
up vote 0 down vote accepted

I have no idea what I did. But it works now. Moderators/admins can delete this post. Guess I was too quick on the trigger. Sorry about that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.