What is the difference between the following two controller ActionResult return statements:
return new RedirectResult(\"http://www.google.com\", false); <
return new RedirectResult(\"http://www.google.com\", false);
this.Redirect(string url) - It will internally create new object of RedirectResult class and do temporary redirection.
new RedirectResult(string url, bool permanent) - It will redirect but gives you an option to redirect permanently or temporary.