SMPL App Menu Samples(Razor Page) Samples(Blazor Server) Samples(Old) CSPS Menu

HTML Encode/Decode
@HttpUtility.HtmlEncode("<i>test</i>"):&lt;i&gt;test&lt;/i&gt;
@HttpUtility.HtmlDecode("&lt;i&gt;test&lt;/i&gt;"):<i>test</i>
@HttpUtility.HtmlDecode(HttpUtility.HtmlEncode("<i>test</i>")):<i>test</i>
<i>test</i>:test
@("<i>test</i>"):<i>test</i>
@Html.Raw("<i>test</i>"):test