Tuesday, January 21, 2014

Different return View() vs return RedirectToAction() vs return Redirect() vs return RedirectToRoute().

1:return View()
This tells MVC to generate HTML to be displayed for the specified view and sends it to the browser. This acts like as Server.Transfer() in Asp.Net WebForm.
public ActionResult Index()
{
 return View();
}

[HttpPost]
public ActionResult Index(string Name)
{
 ViewBag.Message = "Hi, Dot Net Tricks";
 //Like Server.Transfer() in Asp.Net WebForm
 return View("MyIndex");
}

public ActionResult MyIndex()
{
 ViewBag.Msg = ViewBag.Message; // Assigned value : "Hi, Dot Net Tricks"
 return View("MyIndex");
}

What happens if we call the action method directly like return MyIndex(). It is simply a method call which returns a rendered view that is specified in MyIndex() action method.
public ActionResult Index()
{
 return View();
}

[HttpPost]
public ActionResult Index(string Name)
{
 ViewBag.Message = "Hi, Dot Net Tricks";
 //Like Server.Transfer() in Asp.Net WebForm
 return MyIndex();
}

public ActionResult MyIndex()
{
 ViewBag.Msg = ViewBag.Message; // Assigned value : "Hi, Dot Net Tricks"
 return View("MyIndex");
}

2:return RedirectToAction()
This tells MVC to redirect to specified action instead of rendering HTML. In this case, browser receives the redirect notification and make a new request for the specified action. This acts like as Response.Redirect() in Asp.Net WebForm.
Moreover, RedirectToAction construct a redirect url to a specific action/controller in your application and use the route table to generate the correct URL. RedirectToAction cause the browser to receive a 302 redirect within your application and gives you an easier way to work with your route table.
public ActionResult Index()
{
 return View();
}

[HttpPost]
public ActionResult Index(string Name)
{
 ViewBag.Message = "Hi, Dot Net Tricks";
 //Like Response.Redirect() in Asp.Net WebForm
 return RedirectToAction("MyIndex");
}

public ActionResult MyIndex()
{
 ViewBag.Msg = ViewBag.Message; // Assigned value : Null
 return View("MyIndex");
}

3:return Redirect()
This tells MVC to redirect to specified URL instead of rendering HTML. In this case, browser receives the redirect notification and make a new request for the specified URL. This also acts like as Response.Redirect() in Asp.Net WebForm. In this case, you have to specify the full URL to redirect.
Moreover, Redirect also cause the browser to receive a 302 redirect within your application, but you have to construct the URLs yourself.
public ActionResult Index()
{
 return View();
}

[HttpPost]
public ActionResult Index(string Name)
{
 ViewBag.Message = "Hi, Dot Net Tricks";
 //Like Response.Redirect() in Asp.Net WebForm
 return Redirect("Home/MyIndex");
}

public ActionResult MyIndex()
{
 ViewBag.Msg = ViewBag.Message; // Assigned value : Null
 return View("MyIndex");
}

4:return RedirectToRoute()
This tells MVC to look up the specifies route into the Route table that is is defined in global.asax and then redirect to that controller/action defined in that route. This also make a new request like RedirectToAction().
Defined Route
public static void RegisterRoutes(RouteCollection routes)
{
 routes.MapRoute(
 "MyRoute", // Route name
 "Account/", // URL
 new { controller = "Account", action = "Login"} // Parameter defaults
 );

 routes.MapRoute(
 "Default", // Route name
 "{controller}/{action}/{id}", // URL with parameters
 new { controller = "Home", action = "MyIndex", id = UrlParameter.Optional } // Parameter defaults
 );
}

HomeController

public ActionResult Index()
{
 return View();
}

[HttpPost]
public ActionResult Index(string Name)
{
 return RedirectToRoute("MyRoute");
}

AccountController

public ActionResult Login()
{
 return View();
}

Note:
1.Return View doesn't make a new requests, it just renders the view without changing URLs in the browser's address bar.

2.Return RedirectToAction makes a new requests and URL in the browser's address bar is updated with the generated URL by MVC.

3.Return Redirect also makes a new requests and URL in the browser's address bar is updated, but you have to specify the full URL to redirect

4.Between RedirectToAction and Redirect, best practice is to use RedirectToAction for anything dealing with your application actions/controllers. If you use Redirect and provide the URL, you'll need to modify those URLs manually when you change the route table.

5.RedirectToRoute redirects to the specifies route defined in the the Route table
 

No comments:

Post a Comment