vote up 5 vote down star
2

Hi. I don't need a Link but rather only the href= part of the ActionLink.

But if I call Html.ActionLink(...) I get a back. Is there a way to just return the URL of the Action while not getting the ?

flag

2 Answers

vote up 7 vote down check

MVC also provides a UrlHelper class which can do the same thing:

<%=Url.Action(actionName)%>
<%=Url.Action(actionName, htmlValues)%>
<%=Url.Action(actionName, controllerName, htmlValues)%>
link|flag
Awesome, this is what I've been searching for! Thanks – Tigraine Sep 30 '08 at 14:53
vote up 2 vote down

Edit: in response to commment, now including parameters:

<% =Html.BuildUrlFromExpression<YourController>(c => c.YourAction(parameter)) %>
link|flag
Could you please provide a sample of how to use the BuildUrlFromExpression(...) Method? I can't get the parameters right. maybe I'm missing something – Tigraine Sep 30 '08 at 8:13
Wondering how you could add a parameter that's not required by the Controller Action (eg. I'm using a URL like: Article/<id>/<otherId>/<articleName> .. The ArticleName is just for SEO and has no meaning to my Controller. So I just ignore it. With the BuildUrlFromExpression stuff I can't include it.. – Tigraine Sep 30 '08 at 8:58

Your Answer

Get an OpenID
or

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