How to turn route into URL in ASP.NET MVC Controller? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T22:31:40Zhttp://stackoverflow.com/feeds/question/815845http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/815845/how-to-turn-route-into-url-in-asp-net-mvc-controller1How to turn route into URL in ASP.NET MVC Controller?Andrew Arnott2009-05-02T23:03:41Z2009-05-02T23:18:59Z
<p>In a View, code like this will generate the right URL to jump to <em>controller</em>'s <em>action</em> method based on the routes in your global.asax.cs file. </p>
<pre><code><%= Html.ActionLink("text", "action", "controller") %>
</code></pre>
<p>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.</p>
<p>Some controller actions need to redirect the browser, and I want to redirect to a controller and action <strong>without</strong> hard-wiring the URL into the controller, which would break if I changed the way my routes mapped these URLs to controllers and actions</p>
http://stackoverflow.com/questions/815845/how-to-turn-route-into-url-in-asp-net-mvc-controller/815850#8158503Answer by tvanfosson for How to turn route into URL in ASP.NET MVC Controller?tvanfosson2009-05-02T23:06:17Z2009-05-02T23:06:17Z<p>Use the <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.controller.redirecttoaction.aspx" rel="nofollow">RedirectToAction</a> method on the controller:</p>
<pre><code>return RedirectToAction( "action", "controller", new { id = redirectID } )
</code></pre>
http://stackoverflow.com/questions/815845/how-to-turn-route-into-url-in-asp-net-mvc-controller/815852#8158522Answer by Daniel A. White for How to turn route into URL in ASP.NET MVC Controller?Daniel A. White2009-05-02T23:06:19Z2009-05-02T23:18:59Z<p>What you are looking for is <code>RedirectToAction</code>.</p>
<p>If you want just the url, use the <code>Url</code> property of the controller - its a <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.urlhelper.aspx" rel="nofollow">UrlHelper</a>.</p>