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
You would use the Raw method:
Raw
@Html.Raw(ViewBag.SomeMessage)