I have a controller calling a view. In the view there is a partialview called be @Html.Partial("ViewName", model). This works fine.

But in the controller I wish to put something in the viewbag what would be hard to put in the viewmodel I pass to the view. The main view have no problem accessing the viewbag, but in the partialview it does not return anything.

Is it possible to use the viewbag in this case or should I "hack" this data into the model I pass to the view (and the model I pass to the partialview, and the model I pass to the partialview nested in the first partial view)?

link|improve this question

One thing to remember about dynamic is that it's case sensitive – BuildStarted Apr 20 '11 at 15:07
feedback

2 Answers

up vote 2 down vote accepted

That should work without any problems. In my HomeController Index action I add a message to the ViewBag:

ViewBag.Message = "Welcome to ASP.NET MVC!";

On the Index View I add the partial view:

@Html.Partial("ViewName")

And on the partial view I render the message:

@ViewBag.Message

Works perfectly. What else did you do? Might be a typing mistake?

link|improve this answer
feedback

My mistake, I used @Html.Action in the chain without remembering it.

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.