Please enable Javascript to correctly display the contents on Dot Net Tricks!

Persisting Data with TempData

Posted By : Shailendra Chauhan, 25 Feb 2014
Updated On : 25 Feb 2014
Total Views : 148,064   
Support : MVC5, MVC4, MVC3 & MVC2
 

TempData is used to pass data from current request to subsequent request (means redirecting from one page to another). It’s life is very short and lies only till the target view is fully loaded. But you can persist data in TempData by calling Keep() method.

TempData with Keep method

If you want to keep value in TempData object after request completion, you need to call Keep method with in the current action. There are two overloaded Keep methods to retains value after current request completion.
  1. void Keep()

    Calling this method with in the current action ensures that all the items in TempData are not removed at the end of the current request.

     @model MyProject.Models.EmpModel;
    @{ 
     Layout = "~/Views/Shared/_Layout.cshtml"; 
     ViewBag.Title = "About";
     var tempDataEmployeet = TempData["emp"] as Employee; //need typcasting 
     TempData.Keep(); // retains all strings values 
    } 
  2. void Keep(string key)

    Calling this method with in the current action ensures that specific item in TempData is not removed at the end of the current request.

     @model MyProject.Models.EmpModel;
    @{ 
     Layout = "~/Views/Shared/_Layout.cshtml"; 
     ViewBag.Title = "About";
     var tempDataEmployeet = TempData["emp"] as Employee; //need typcasting 
     TempData.Keep("emp"); // retains only "emp" string values 
    } 

Key point about TempData and TempData.Keep()

  1. Items in TempData will only tagged for deletion after they have read.

  2. Items in TempData can be untagged by calling TempData.Keep(key).

  3. RedirectResult and RedirectToRouteResult always calls TempData.Keep() to retain items in TempData.

Summary

In this article you have learned how to persist data in TempData. I hope you will refer this article for your need. I would like to have feedback from my blog readers. Please post your feedback, question, or comments about this article.

 
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Corodva. Read more...
 
Free Interview Books
 
BROWSE BY CATEGORY
 
SUBSCRIBE TO LATEST NEWS
 
LIKE US ON FACEBOOK
 
+