-1

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()?

Community
  • 1
  • 1
Shahrooz Jafari
  • 925
  • 3
  • 9
  • 16

2 Answers2

5

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.

Alex
  • 7,728
  • 3
  • 35
  • 62
0

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.

Community
  • 1
  • 1
Rob
  • 3,556
  • 2
  • 34
  • 53