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

What is TempData in Asp.net MVC

Updated on     Kisan Patel

TempData is also a dictionary derived from TempDataDictionary class and stored in short lives session and it is a string key and object value. The difference is that the life cycle of the object. TempData keep the information for the time of an HTIP Request. This mean only from one page to another. This also work with a 302/303 redirection because it’s in the same HTTP Request. Helps to maintain data when you move from one controller to other controller or from one action to other action. In other words when you redirect, “Tempdata” helps to maintain data between those redirects. It internally uses session variables. Temp data use during the current and subsequent request only means it is use when you are sure that next request will be redirecting to next view. It requires typecasting for complex data. type and check for null values to avoid error. generally used to store only one time messages like error messages, validation messages.

public ActionResult Index(){
var model = new Review(){
Body ="start", Rating=5};
TempData["ModeIName"] = model;
return RedirectToAction("About");
}
public ActionResult About()
var model= TempData["ModeIName");
return View(model);
}


ASP.NET

Leave a Reply