vote up 3 vote down star
1

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

flag

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

1 Answer

vote up 4 vote down check

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

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