views:

505

answers:

2

Is something like Url.Action<TController>(...) or Html.ActionLink<TController>(...) in MvcContrib?

I see the FluentHtml stuff for forms, but I don't see the same concept applied to urls.

This post on CodePlex said it was added, but I don't see it in the source anywhere. Any help would be great.

Edit:

Also, I have read this, but would like to know specifically about MvcContrib.

+2  A: 

I think that is part of the Futures: "ASP.NET MVC Futures Assembly"

jeef3
A: 

jeef3 is correct, it is part of the ASP.NET MVC Futures. Mvccontrib has a dependency on it, so if you are using that library you already have it in your project.

Wyatt Barnett