I have a value that I've put in the ViewBag:

ViewBag.SomeKey = value;

In my view I have the key stored as a String.

String theKey = "SomeKey";

Is there a way to access my value from the Viewbag using this String version of the key?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Use ViewData[theKey]. Both ViewData and ViewBag use the same underlying storage.

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.