vote up 1 vote down star

I'd like to know what the scope and visibility of TempData is in ASP.NET MVC.

flag

72% accept rate

2 Answers

vote up 1 vote down check

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.

link|flag
Well sorry for this kind of comment but I can't open any of the microsoft's websites! And I don't now why? anyway I got the answer! Thanks. – Vikas Jun 9 at 13:00
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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