asp.net mvc RedirectToAction("Index") vs Index() - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T18:46:13Zhttp://stackoverflow.com/feeds/question/327095http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327095/asp-net-mvc-redirecttoactionindex-vs-index2asp.net mvc RedirectToAction("Index") vs Index()TT2008-11-29T03:07:50Z2008-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#3271085Answer by tvanfosson for asp.net mvc RedirectToAction("Index") vs Index()tvanfosson2008-11-29T03:20:12Z2008-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#3271581Answer by Buu Nguyen for asp.net mvc RedirectToAction("Index") vs Index()Buu Nguyen2008-11-29T04:16:49Z2008-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>