Is there a way to access a .NET MVC ViewBag's properties using a string key?

593 Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

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