Is there any way to create and use dynamic properties for ViewBag, based on strings?
Something like
ViewBag.CreateProperty("MyProperty");
ViewBag.Property("MyProperty") = "Myvalue";
Thank you
|
Is there any way to create and use dynamic properties for ViewBag, based on strings? Something like
Thank you
| |||
|
feedback
|
|
I just found out that ViewData can be used to create such properties for ViewBag So to create property CityErrorMessage I have to use
and then in the view I can use
EDIT: I created the ViewBag's properties dynamically, because I received the name of field with validation error in a list So the code actually is
| ||||
|
feedback
|
|
You don't have to use
And then use it in the view:
| ||||
|
feedback
|