asp.net mvc RedirectToAction("Index") vs Index() - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:46:13Z http://stackoverflow.com/feeds/question/327095 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/327095/asp-net-mvc-redirecttoactionindex-vs-index 2 asp.net mvc RedirectToAction("Index") vs Index() TT 2008-11-29T03:07:50Z 2008-11-29T04:16:49Z <p>Say I have a controller with an Index Method and a Update Method. After the Update is done I want to redirect to Index(). Should I use return RedirectToAction("Index") or can I just call return Index()? Is there a difference?</p> <pre><code>public ActionResult Index() { return View("Index", viewdata); } public ActionResult Update() { // do updates return RedirectToAction("Index"); or return Index(); } </code></pre> http://stackoverflow.com/questions/327095/asp-net-mvc-redirecttoactionindex-vs-index/327108#327108 5 Answer by tvanfosson for asp.net mvc RedirectToAction("Index") vs Index() tvanfosson 2008-11-29T03:20:12Z 2008-11-29T03:20:12Z <p>Use the redirect otherwise the URL on the client will remain the same as the posted URL instead of the URL that corresponds to the Index action.</p> http://stackoverflow.com/questions/327095/asp-net-mvc-redirecttoactionindex-vs-index/327158#327158 1 Answer by Buu Nguyen for asp.net mvc RedirectToAction("Index") vs Index() Buu Nguyen 2008-11-29T04:16:49Z 2008-11-29T04:16:49Z <p>Other things to consider:</p> <ul> <li><p>Redirect action after a POST will act more nicely when the user clicks Refresh button, since they won't be prompted to resend data to server.</p></li> <li><p>Form data will be lost with the redirect action unless you maintain them explicitly through, say, TempData. Without doing this, your form controls won't have any value after a POST, which may be undesirable in some cases.</p></li> </ul>