Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的页面中有一个时刻,我连接到数据库并检索一些数据。一个特别的领域是html代码。我想在我的页面中将它显示为可以理解它的控件中的 html。我有哪些选择?
使用文字。
.aspx:
<asp:Literal runat="server" ID="myLiteral" />
代码隐藏:
myLiteral.Text = "<h2> this is a h2 html tag</h2>";
这将打印出来