I have used response.redirect in classic ASP and ASP.NET webforms. However, with MVC 2.0, I am running into something peculiar.
I have a private method in a contr
In MVC never use Response.Redirect use
return RedirectToAction("ActionResultName", "ControllerName");
As to WHY to NOT use Response.Redirect in MVC: