I think that the title pretty much sums it up:
What's the difference between RouteLink() and ActionLink() in ASP.NET MVC?
i.e. when do you use Html.RouteLink() and when do you use Html.ActionLink() in your View?
|
1
|
I think that the title pretty much sums it up: What's the difference between RouteLink() and ActionLink() in ASP.NET MVC? i.e. when do you use Html.RouteLink() and when do you use Html.ActionLink() in your View?
|
||
|
|
|
|
Action and Routes don't have to have a 1:1 relationship. ActionLink will generate the URL to get to an action using the first matching route by action name. RouteLink will generate a URL to a specific route determined either by name or route values. I wrote an in-depth article on URL generation performance in ASP.NET MVC... http://www.chadmoran.com/blog/2009/4/23/optimizing-url-generation-in-aspnet-mvc-part-2.html |
||||||
|
|
|
In addition to the other answers given here, RouteLink is a little bit faster, and cannot ever match the wrong route because you changed your routing table. |
||
|
|
|
|
Actually, the output from the two methods is the same, but it is generated in slightly different ways:
The Use them as you feel like, and as they make sense to your project. There is really no upside/downside to either of them (that is not matched by some other...). |
||
|
|
|
|
RouteLink takes the name of a route, so if your route names are reliable and fairly unique then this will be the same even if the action name to be used changes. ActionLink links to a specific action of a specific controller instead. I use both in my views, depending on what kind of link I'm after! |
||
|
|