LiteralControl 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
LiteralControl 클래스의 새 인스턴스를 초기화합니다.
오버로드
LiteralControl() |
요청된 ASP.NET 페이지에서 렌더링할 리터럴 문자열을 포함하는 LiteralControl 클래스의 새 인스턴스를 초기화합니다. |
LiteralControl(String) |
지정된 텍스트를 사용하여 LiteralControl 클래스의 새 인스턴스를 초기화합니다. |
LiteralControl()
요청된 ASP.NET 페이지에서 렌더링할 리터럴 문자열을 포함하는 LiteralControl 클래스의 새 인스턴스를 초기화합니다.
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