I have a view (actually it's a partial view) that contains a partial view:
@Html.Partial("_DisplayBidItem", @Model.Item)
In the parent view I also set a value in the ViewBag:
@ViewBag.Mode = "DISPLAY";
The ViewBag setting, set in the parent view is perfectly accessible in the ViewBag of the child partial view. All good.
But the child partial view gets refreshed with an AJAX pastback and afterwards it's ViewBag no longer contains the settings in the parent view. Is there a way to explicitly access the parent views ViewBag from within the child partial view?
Thanks
THE ANSWER: Sometimes walking away and coming back makes all the difference...
Since I was refreshing the child partial view via an AJAX call to a controller I could just set the ViewBag in the controller. That way id didn't depend on the ViewBag in the parent view.