I'm stumped on what seems to be a very strange issue.
In my Razor markup, I have:
@Html.ActionLink("World", "Browse", "Destination") But the HTML produced is:
<a href="/Destination/Browse/1/africa-middle-east">World</a> Note that the additional data is, in fact, valid data that I'm using in other links. But why the heck does it show up here? I can even verify that the first line produces the second line by inspecting it in the debugger.
I know I'm doing something really stupid here. I just don't see what it is.