I store encoded HTML in the database.
The only way i could display it correctly is :
@MvcHtmlString.Create(HttpU
Imho you should not store your data html-encoded in the database. Just store in plain text (not encoded) and just display your data like this and your html will be automatically encoded:
@Model.Content