up vote 5 down vote favorite
1
share [g+] share [fb]

What is the actual use of TempData collection in asp.net MVC, I need pros and cons of that collection, and when do I need to use it, which views it is shared upon, or any useful information about it, finally if someone can tell me when to use it rather than ViewData?

Thanks in advance

CLOSED as exact duplicate of http://stackoverflow.com/questions/173159/difference-between-viewdata-and-tempdata

link|improve this question

feedback

closed as exact duplicate by tvanfosson Nov 24 '08 at 7:27

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

1 Answer

up vote 11 down vote accepted

TempData is used to share data between controller actions. If your controller does a RedirectToAction and the target action needs data (perhaps a particular model instance) to act upon, you can store this data in TempData. Using TempData is similar to storing it in the session, but only for one round-trip. You use TempData when you need to pass data to another controller action rather than a view for rendering.

link|improve this answer
feedback

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