- If you are already on a page within a controller you can use the shortest one which is only the caption and the action.
eg. RedirectToAction("MyActionName") - If you are referencing another controller or you want to include parameters.
IMPORTANT: It may seem redundant but you need to list the action name twice. Notice Login is listed twice.
eg. RedirectToAction("Login", new RouteValueDictionary(new { controller = "Account", action = "Login", returnUrl = "/PersonalizedLearn" }));
If you have any questions feel free to email me at chris.williams@readwatchcreate.com