Url.Action(action,controller,routeValues) doubling up ID in URL
问题 I am using the following code (taken from a Stackoverflow post: Action Image MVC3 Razor ) in an HTML extension helper to build an action link. My Url.Action() method is returning a url that has the routeValues both in the route as well as appended onto the url like so: /Proposals/List/Tabled?id=Tabled when what I want is just /Proposals/List?id=Tabled Any suggestions about why it wants to do this? Update : A route rule from my Global.asax file. That must be why it's doing it, but why it's