up vote 1 down vote favorite
share [g+] share [fb]

In a View, code like this will generate the right URL to jump to controller's action method based on the routes in your global.asax.cs file.

<%= Html.ActionLink("text", "action", "controller") %>

My question is how can I achieve a similar route-to-URL mapping outside a view, such as a Controller? There is no Html member on the Controller class on which to call ActionLink.

Some controller actions need to redirect the browser, and I want to redirect to a controller and action without hard-wiring the URL into the controller, which would break if I changed the way my routes mapped these URLs to controllers and actions

link|improve this question

76% accept rate
i updated my response to your question. – Daniel A. White May 2 '09 at 23:19
feedback

2 Answers

up vote 2 down vote accepted

What you are looking for is RedirectToAction.

If you want just the url, use the Url property of the controller - its a UrlHelper.

link|improve this answer
Thanks, Daniel. – Andrew Arnott May 2 '09 at 23:33
feedback

Use the RedirectToAction method on the controller:

return RedirectToAction( "action", "controller", new { id = redirectID } )
link|improve this answer
Thanks. What if I just want the URL... but don't want to redirect the user? – Andrew Arnott May 2 '09 at 23:09
feedback

Your Answer

 
or
required, but never shown

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