im trying to create an Html.ActionLink with segments www.example.com/Store*/Segment1/Segment2/Segment3*. The segments are optional.

ive defined the following route:

routes.MapRoute("Store",
"{controller}/{Segment1}/{Segment2}/{Segment3}",  
new
{
controller = "Store",
action = "Show",
segment1 = UrlParameter.Optional,
segment2 = UrlParameter.Optional,
segment3 = UrlParameter.Optional
}
);

The Action should not be seen in the url. I cant seem to be able to create a valid link.

In the View i generate the links as follows:

<ul>
@foreach (KeyValuePair<string, string> item in ViewBag.LinkList){<li>@Html.ActionLink(item.Key, "Show", "Store", new { item.Value })</li>}
</ul>

When i type the url in the adressbar everything goes well (the Action can read the segments as parameters), but i cant get the Html.ActionLink correct. Anyone can give me an example of a working ActionLink for this route? Thanks!

link|improve this question

43% accept rate
feedback

1 Answer

You defined default for segment2 twice, forgetting about segment3 which breaks the whole thing because you didn't define segment variables in your ActionLink call.

link|improve this answer
thanks, edited that. it's a typo in the post though, the route in my code didnt have it :) – user1197130 Feb 9 at 9:50
Oh, ok. @Html.ActionLink(item.Key, "Show", "Store", new { item.Value }) this line looks wrong too, new { item.Value } is not valid expression. – Lukáš Novotný Feb 9 at 9:54
i know, i need to create an actionlink that generates something like ~/Store/segment1/. item.Key is the urlname, and item.Value is the parameter – user1197130 Feb 9 at 9:57
Like this @Html.ActionLink(item.Key, "Show", "Store", new { segment1 = item.Value })? – Lukáš Novotný Feb 9 at 10:03
that generates a link like localhost:50107/Store/Segment1?Length=8 , instead of localhost:50107/Store/Segment1. the different segments (deeper levels) should be generated dynamically.. – user1197130 Feb 9 at 10:13
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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