Session Variables
Data in ViewData/ViewBag can be passed only from Controller to View
Data in TempData can be passed across the whole request from action to action ...to action to view.
But both ViewData and TempData don't preserve data between two requests of a session.
To preserve data between two requests of same session, use session
variables:
Using TempData in View
Last updated
Was this helpful?