boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

ASP.NET MVC – Pass data from one action method to another action method

Updated on     Kisan Patel

When, we need to pass some data from one action method to another method while redirecting the user to another action method from calling action method. Then, we can pass certain data through the RedirectToAction method by object parameter.

In this kind of scenario, we can use TempData

public ActionResult Index()
{
      // once you have set the value, you will need to use it otherwise it remains in the memory and next time this action method will be called it throws error "key already exists"
     TempData.Add("YourTempData", "This data is coming from calling method.");
     return RedirectToAction("GotoMethod");
}
public ActionResult GotoMethod()
{
     return Content(TempData["YourTempData"].ToString());
}

When above action method is called, it saves the data into TempData with the key “YourTempData” and redirects to the “GotoMethod”.


ASP.NET MVC

Leave a Reply