vote up 2 vote down star
1

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?

public ActionResult Index()
{
  return View("Index", viewdata);
}

public ActionResult Update()
{
  // do updates
  return RedirectToAction("Index"); or
  return Index();
}
flag

60% accept rate

2 Answers

vote up 5 vote down check

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.

link|flag
thx, I did not think of that one – TT Nov 29 '08 at 3:24
vote up 1 vote down

Other things to consider:

  • 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.

  • 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.

link|flag

Your Answer

Get an OpenID
or

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