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?
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?
Use
ViewData[theKey]
. BothViewData
andViewBag
use the same underlying storage.