Skip to content

Instantly share code, notes, and snippets.

@teocci
Last active June 2, 2016 17:50
Show Gist options
  • Save teocci/dbf597b6890a320c71099f4566658e3b to your computer and use it in GitHub Desktop.
Save teocci/dbf597b6890a320c71099f4566658e3b to your computer and use it in GitHub Desktop.
TempData is used to pass data from current request to subsequent request.

Persisting Data with TempData

TempData is used to pass data from current request to subsequent request, this 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.

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 
} 

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()

  • Items in TempData will only tagged for deletion after they have read.
  • Items in TempData can be untagged by calling TempData.Keep(key).
  • 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment