When will the values of the ViewBag be flushed or cleared ?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

When you leave the view on subsequent request. ViewBag is created in the controller and it will live until the rendering of the view. In addition to this it is something that I would not recommend you using and replace it with view models.

link|improve this answer
Why wouldn't you recommend ViewBag? because of it live until the rending of view ? – Saad Jul 28 '11 at 12:42
5  
Because it is much nicer to have a strongly typed ViewModel. Makes testing a lot easier. – Dismissile Jul 28 '11 at 13:19
1  
Strongly type all the things! – jfar Jul 28 '11 at 13:32
1  
Dynamic vs static, it's just a preference thing – BlackTigerX Jul 28 '11 at 13:55
2  
If you want everything dynamic then go and use Ruby on Rails. Us C#'ers like our statically-typed goodness. :) – RPM1984 Jul 29 '11 at 9:53
feedback

Your Answer

 
or
required, but never shown

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