Render data as html
This page was created by Hans.karlsen@mdriven.net on 2018-09-30. Last edited by Stephanie@mdriven.net on 2025-02-24.

If your data contains html markup and you want the browser to render the html go like this:

Column: IsStatic = True , TaggedValue DataIsHtml=True

In Razor the implementation use

Html.Raw(<normal bind>)

In AngularJS it is more complex due to security concerns:

Must inject service $sce. $sce is a service that provides Strict Contextual Escaping services to AngularJS.