How to turn route into URL in ASP.NET MVC Controller? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T22:31:40Z http://stackoverflow.com/feeds/question/815845 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/815845/how-to-turn-route-into-url-in-asp-net-mvc-controller 1 How to turn route into URL in ASP.NET MVC Controller? Andrew Arnott 2009-05-02T23:03:41Z 2009-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>&lt;%= Html.ActionLink("text", "action", "controller") %&gt; </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#815850 3 Answer by tvanfosson for How to turn route into URL in ASP.NET MVC Controller? tvanfosson 2009-05-02T23:06:17Z 2009-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#815852 2 Answer by Daniel A. White for How to turn route into URL in ASP.NET MVC Controller? Daniel A. White 2009-05-02T23:06:19Z 2009-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>