Just started a new MVC 3 project, and I cannot get a generic link to the action and the URLs that I use for MVC 2 futures.
What nuget packages and namespaces do I need to keep?
Example
Html.ActionLink<HomeController>(c => c.Index(), "Home")
Answer:
You just need to reference Microsoft.Web.Mvc through NuGet MvcContrib - and make the namespace available in the views.
nick
source share