如果我使用一个文字控件并将其分配给它 - 一个字符串,在它的代码隐藏文件中为整个 html 页面动态构建怎么办?文字控件会以任何方式修改输出吗?例如添加额外的 html、编码等
例如 ASPX 文件将只包含这个
<%
@Page Language="VB"
Title="SamplePage"
CodeFile="SamplePageCodeBehind.aspx.vb"
Inherits="SamplePage"
%><asp:Literal Id="litContents" Runat="Server" />
在代码隐藏 (SamplePageCodeBehind.aspx.vb) 中:
Protected Sub Page_Load(
ByVal sender As Object,
ByVal e As System.EventArgs
) Handles Me.Load
Dim sHtml As String = _
"<html><head></head><body>hello world</body></html>"
litContents.Text = sHtml
End Sub
谢谢!