OK, quite new to ASP.Net MVC, so I\'m sorry if this is a silly question, but how do I go about showing the values of a ViewBag as HTML. For Example, if ViewBag.SomeMessage conta
I think you can do something like this:
@Html.Raw(ViewBag.SomeMessage)