How can I show a viewbag as html?

前端 未结 5 1550
独厮守ぢ
独厮守ぢ 2021-02-03 21:33

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

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-03 22:30

    I think you can do something like this:

    @Html.Raw(ViewBag.SomeMessage)
    

提交回复
热议问题