vote up 3 vote down star

I used to be able to do the following in Preview 3

<%=Html.BuildUrlFromExpression<AController>(c => c.AnAction(par1, par2)%>

How am I supposed to create urls in a strongly typed way with the MVC Beta? The only thing so far I have found is

<%= Html.ActionLink("aName", "ActionName", "ControllerName")%>

This is not strongly typed off course.

flag

2 Answers

vote up 4 vote down check

You need the ASP.NET MVC Beta Futures, which is a separate download

ASP.NET MVC Beta Futures

then your original code will work as before.

See this post for getting it working: SO post on missing extensions

link|flag
Thanks. So if you didn't know that you had to download an extra part of it, there is no way of creating a type safe url?! Also, how did you know that? – boris callens Oct 20 '08 at 12:39
From the SO post I have added – Sam Mackrill Oct 20 '08 at 12:41
vote up 1 vote down

The Microsoft.Web.Mvc assembly provides extension methods to the HtmlHelper which allow something like

<%= Html.ActionLink<SomeController>(c => c.Index()) %>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.