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!