How to display HTML stored in a database from an ASP.NET MVC view? December 29, 2023 by Tarik Try this: <%= System.Web.HttpUtility.HtmlDecode(yourEncodedHtmlFromYouDatabase) %> More info here.