I'd like to know what the scope and visibility of TempData is in ASP.NET MVC.
|
|
|
|
|
|
|
According to MSDN, TempData, an instance of TempDataDictionary, is available in classes that derive from ControllerBase, ViewContext, and ViewPage. The data only lasts for a single round-trip: set in one request, removed after the next request. |
||
|
|
|
TempData is not accessible (set to null) in Views using post-cache substitution (HttpResponse.WriteSubstitution() Method). See http://stackoverflow.com/questions/683646/asp-net-mvc-donut-caching-and-tempdata for more details. |
||
|
|
