我如何得到这个HTML来显示格式化的,没有标签? [英] How do I get this HTML to display formatted, without tags?

查看:109
本文介绍了我如何得到这个HTML来显示格式化的,没有标签?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个博客(编码的做法)。我使用的是富文本编辑器(CKEditor的)和后保存到数据库中。当我拉出来后在Label.Text显示,它显示了所有的HTML标签:

I created a blog (for coding practice). I use a Rich Text Editor (ckeditor) and save the post to a database. When I pull the post out to display in a Label.Text, it shows all the HTML tags:

<p><strong>there was</strong> once a fox that lived</p>
<p> in the<span style="color: #ff0000"> woods</span></p>

我如何得到这个职位显示,在正确的格式(段落,颜色等),但没有HTML标签?

How do I get the post to display, with the proper formatting (paragraph, color, etc.), but without the HTML tags?

推荐答案

FYI:字面产生相同的结果作为标签...但我得到了我的答案,这个作品:

FYI: The literal produced the same result as the Label ... but I got my answer, this works:

string strHTML = "<p>Hello World!</p>";
Label.Text = Server.HtmlDecode(strHTML);

这篇关于我如何得到这个HTML来显示格式化的,没有标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆