我有一些文本存储在数据库中:
<p>Hi this is Roht <strong>Singh</strong></p>
当我检索它并将其 HTML 解码为标签控件时,它给了我以下文本:
<p>Hi this is Roht <strong>Singh</strong></p>
我的代码:
label1.Text = Server.HtmlDecode(ds.Tables[0].Rows[0][0].ToString());
我怎样才能像这样将文本呈现为 HTML?
嗨,我是 Roht Singh