Display encoded html with razor

前端 未结 6 1698
心在旅途
心在旅途 2020-12-02 10:13

I store encoded HTML in the database.

The only way i could display it correctly is :

@MvcHtmlString.Create(HttpU
6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-02 10:48

    I store encoded HTML in the database.

    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

提交回复
热议问题