User-1794695938 posted
I thought this would be simple but I can't find an answer that works for me. I have a web page that displays a blog article stored in a SQL DB. The article contains HTML markup so it will display formatted, as intended. Everything I have
tried, just displays the HTML as text. Here is my View code snippet.
<section class="section-article js-section-blog">
<div class="row">
<div class="col span-2-of-2">
<div id="Article" class="article-text-box">
@Model.Post
</div>
</div>
</div>
</section>