I know what ViewData is and use it all the time, but in ASP.NET Preview 5 they introduced something new called TempData.

I normally strongly type my ViewData, instead of using the dictionary of objects approach.

So, when should I use TempData instead of ViewData?

Are there any best practices for this?

link

feedback

2 Answers

up vote 53 down vote accepted

In one sentence: TempData are like ViewData with one difference: They only contain data between two successive requests, after that they are destroyed. You can use tempdata to pass error messages or something similar.

Although outdated, this article has good description of TempData lifecycle: http://www.squaredroot.com/2007/12/20/mvc-viewdata-vs-tempdata/

As Ben Scheirman said here: http://flux88.com/2008/01/testing-tempdata-in-asp-net-mvc/, "TempData is a session-backed temporary storage dictionary that is available for one single request. It’s great to pass messages between controllers."

HTH
Dragan

link
1  
both links are breaking :( – iSid May 4 '11 at 13:13
+1 for good grammar (-: – sydneyos Aug 30 '11 at 13:52
feedback

When an action returns a RedirectToAction result it causes an HTTP redirect (equivalent to Response.Redirect). Data can be preserved in the TempData property (dictionary) of the controller for the duration of a single HTTP redirect request.

link
Will the value of ViewData be preserved in the same case? – iSid May 4 '11 at 13:14
1  
@Ismail: No, ViewData will not preserve data through Redirect. That's the main difference of TempData. – Protron Jun 7 '11 at 18:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.