LiteralControl 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 LiteralControl 类的新实例。
重载
LiteralControl() |
初始化 LiteralControl 类的新实例,该类包含要在请求的 ASP.NET 页上呈现的文本字符串。 |
LiteralControl(String) |
用指定的文本初始化 LiteralControl 类的新实例。 |
LiteralControl()
初始化 LiteralControl 类的新实例,该类包含要在请求的 ASP.NET 页上呈现的文本字符串。
public:
LiteralControl();
public LiteralControl ();
Public Sub New ()
示例
下面的代码示例创建一个类 CustLiteralControlClass
,用于扩展 类 LiteralControl 。 它使用未指定对象文本的构造函数创建名为 myLiteralControlClass1
的 类的 LiteralControl 实例。 创建 对象后, Text 属性用于设置它包含的文本。
CustomLiteralControlClass myLiteralControlClass1=
new CustomLiteralControlClass();
myLiteralControlClass1.Text="This Control demonstrates the constructor1";
Dim myLiteralControlClass1 as CustomLiteralControlClass = _
new CustomLiteralControlClass()
myLiteralControlClass1.Text="This Control demonstrates the constructor1"
适用于
LiteralControl(String)
用指定的文本初始化 LiteralControl 类的新实例。
public:
LiteralControl(System::String ^ text);
public LiteralControl (string text);
new System.Web.UI.LiteralControl : string -> System.Web.UI.LiteralControl
Public Sub New (text As String)
参数
- text
- String
要在请求的网页上呈现的文本。
示例
下面的代码示例使用 构造函数创建 类的 LiteralControl 两个 LiteralControl 实例。 这两个实例呈现 H3 HTML 元素的开始和结束标记,并包含要显示在 H3 标记中的文本。
// Add two LiteralControls that render HTML H3 elements and text.
[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")]
protected override void CreateChildControls() {
this.Controls.Add(new LiteralControl("<h3>Value: "));
TextBox box = new TextBox();
box.Text = "0";
this.Controls.Add(box);
this.Controls.Add(new LiteralControl("</h3>"));
}
' Add two LiteralControls that render HTML H3 elements and text.
<System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand, Name:="FullTrust")> _
Protected Overrides Sub CreateChildControls()
Me.Controls.Add(New LiteralControl("<h3>Value: "))
Dim Box As New TextBox
Box.Text = "0"
Me.Controls.Add(box)
Me.Controls.Add(New LiteralControl("</h3>"))
End Sub