0

在我的页面中有一个时刻,我连接到数据库并检索一些数据。一个特别的领域是html代码。我想在我的页面中将它显示为可以理解它的控件中的 html。我有哪些选择?

4

1 回答 1

2

使用文字。

.aspx:

<asp:Literal runat="server" ID="myLiteral" />

代码隐藏:

myLiteral.Text = "<h2> this is a h2 html tag</h2>";

这将打印出来

这是一个 h2 html 标签

于 2012-11-13T19:46:13.397 回答