vote up 13 vote down star
4

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?

flag

2 Answers

vote up 16 vote down check

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/post/2007/12/MVC-ViewData-vs-TempData.aspx

As Ben Scheirman said here: http://flux88.com/testingtempdatainaspnetmvc.aspx, "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|flag
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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