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

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I just found out that ViewData can be used to create such properties for ViewBag

So to create property CityErrorMessage I have to use

ViewData.Add("CityErrorMessage", MyErrorMessage)

and then in the view I can use

@ViewBag.CityErrorMessage

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

foreach (ValidationError err in ValidationErrors)
{
    ViewData.Add(
        string.format("{0}ErrorMsg", err.PropertyName),
        err.ValidationErrorMessage);
}
link|improve this answer
feedback

You don't have to use ViewData at all. ViewBag is a dynamic wrapper around ViewData dictionary which means you can assign values to it, just like you were using a strong-typed class.

ViewBag.CityErrorMessage = MyErrorMessage;

And then use it in the view:

@ViewBag.CityErrorMessage
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.