如何从ckeditor删除HTML标记到textarea

时间:2015-06-25 07:31:44

标签: html asp.net asp.net-mvc

我正在尝试创建一个简单的博客,其中包含一篇包含ckeditor的帖子文章功能。当我从ckeditor插入文本并将其存储在数据库中时,我想从数据库中获取内容以在我的索引页面上显示它。

问题是它可以显示内容但显示HTML标记

Screenshot of blog post. It contains visible paragraph tags around the text.

1 个答案:

答案 0 :(得分:3)

要在ASP.NET.MVC中将字符串显示为Html,请使用以下内容:

@Html.Raw(@Model.PropertyName)

其中PropertyName是您的媒体资源的名称