我尝试在我的Web窗体应用程序中使用以下块:
string entitiesText = "<p>Example text </p>"
message.Text = entitiesText;
在这种情况下,message
标签显示“<p>Example text</p>
”。如何将entitiesText
添加到message
标签以仅显示没有html标签的文字?
答案 0 :(得分:0)
Label
控件将转义文本,因此它会显示您在源代码中看到的字符串。
可以使用LiteralControl
将HTML注入页面(读取:使用字符串中的标签作为真实标签)。
但是:
<p>
,而不是<p>