我有FCKEditor发布的HTML代码存储在数据库中,并希望显示(很好地渲染)到一个视图。因此,例如,存储为:
<>pre<>This is some sample text<>pre</>
This is some sample text
(使用适当的样式预格式化文本)
解决方法
尝试
<%= System.Web.HttpUtility.HtmlDecode(yourEncodedHtmlFromYouDatabase) %>
更多信息here @ MSDN online。
hth!