23

I am trying to generate the full URL for a route link in my razor view for ASP.NET MVC 3. I know I can use Html.RouteLink to generate a link however all I want is the URL, not the surrounding a tag wrapper. Is there a way to do this?

3 Answers 3

24

Are you talking about:

<a href="@Url.Action("Action", "Controller", new { @id = "2" })">
    Link to Page</a>

vs.

@Html.ActionLink("Link to page", "Action", "Controller", new { @id = "2" })

The Url Model builds only Links; Html builds the HTML as well.

Sign up to request clarification or add additional context in comments.

Comments

19

Use the UrlHelper.

 Url.RouteUrl( "MyRoute" )

1 Comment

This seems to work. I used the RouteUrl(string, object, string) overload to generate the full url.
1

Use RouteUrl as tvanfosson proposes.

I would just want to mention T4MVC adds the extension ActionAbsolute to create a full url from an action.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.