Possible Duplicate:
What's the difference between RouteLink and ActionLink in ASP.NET MVC?
What's the difference between RouteLink() and ActionLink() in ASP.NET MVC?
When to use use Html.RouteLink() and when to use Html.ActionLink()?
Possible Duplicate:
What's the difference between RouteLink and ActionLink in ASP.NET MVC?
What's the difference between RouteLink() and ActionLink() in ASP.NET MVC?
When to use use Html.RouteLink() and when to use Html.ActionLink()?
The ActionLink method renders an element that links to an action method.
The RouteLink method renders an element that links to a URL, which can resolve to an action method, a file, a folder, or some other resource.
What's the difference between RouteLink and ActionLink in ASP.NET MVC?
This question has been answered already, I'm not going to steal it's contents.