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 内容并以某种方式将其呈现在页面上,我该怎么做?我应该使用什么样的控制?
使用LiteralControl,然后将您的 HTML 内容转储到其中。
string somehtml = "<div>stuff</div>"; MyLiteralControl.Text = somehtml;
您可以使用<asp:LiteralControl>. 设置它的 Text 属性。
<asp:LiteralControl>