I have seen many posts about when to use ViewBag/ViewData vs ViewModel but i have not been able to find an explanation of the lifecycle of the ViewBag.

For example, i have two Action methods in one Controller:

// POST: /MyModel/Edit/5
[HttpPost]
public ActionResult Edit(MyModel _mymodel){}

and

// GET: /MyModel/Edit/5
public ActionResult Edit(int id){}

If i put some values in the ViewBag in the GET action method, to set up some Form labels, then when they user clicks 'Submit' button and the Form is posted back to the server via HTTP POST, the ViewBag values are no longer within the POST action method.

Can someone please explain (or provide reference to good article) the lifecycle of the ViewBag/ViewData ?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

The data you put in the ViewBag/ViewData is only available during the life-cycle of the request within which you populated it. MVC does not have post backs. If you need something to persist over more than a single request, you should use Session.

Here is a decent article about the differences between ViewData, ViewBag, and TempData: http://rachelappel.com/when-to-use-viewbag-viewdata-or-tempdata-in-asp.net-mvc-3-applications

link|improve this answer
thanks for the reply. I had read that article and it does not touch on the lifecycle of ViewBag/ViewData but does slightly on TempData. To clear things up, by 'Post Back' all i meant was user submits a FORM thereby causing a HTTP POST Request, which is then handling by a Controllers appropriate Action method. – JTech Feb 8 at 2:19
The article does state "However, once the controller redirects, the ViewBag and ViewData will contain null values." Correct, she doesn't specifically say that the ViewBag and ViewData's life-cycle ends once the request is complete, but she does imply it. – Zach Green Feb 8 at 2:27
feedback

From MSDN - ViewBag: The dynamic view data dictionary, ViewData: The dictionary for the view data.

So these/this is a dictionary for a given view. You set its values in your action and you use it in your view. As Zach said it's not coming back with the subsequent request. You can send its values back to any given action as a form field, in querystring, etc, but these values won't be automatically available as VieBag's properties.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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