HtmlTextArea-Konstruktor
Initialisiert eine neue Instanz der HtmlTextArea-Klasse.
Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in system.web.dll)
Syntax
'Declaration
Public Sub New
'Usage
Dim instance As New HtmlTextArea
public HtmlTextArea ()
public:
HtmlTextArea ()
public HtmlTextArea ()
public function HtmlTextArea ()
Hinweise
Mit diesem Konstruktor können Sie eine neue Instanz der HtmlTextArea-Klasse erstellen und initialisieren.
In der folgenden Tabelle werden die anfänglichen Eigenschaftenwerte für eine Instanz von HtmlTextArea aufgeführt.
Eigenschaft |
Anfangswert |
---|---|
Das Zeichenfolgenliteral "textarea". |
Beispiel
Im folgenden Codebeispiel wird das Erstellen einer Instanz eines HtmlTextArea-Steuerelements und das Platzieren auf der Webseite veranschaulicht.
<%@ Page Language="VB" AutoEventWireup="True" %>
<script runat="server" >
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
' Create an HtmlTextArea control.
Dim area As HtmlTextArea = New HtmlTextArea()
area.ID = "TextArea1"
area.Value = "Enter text here."
area.Cols = 20
area.Rows = 5
' Add the control to the Controls collection of the
' PlaceHolder control.
Place.Controls.Clear()
Place.Controls.Add(area)
End Sub
</script>
<html>
<head>
<title>HtmlTextArea Constructor Example</title>
</head>
<body>
<form runat="server">
<h3>HtmlTextArea Constructor Example</h3>
<asp:PlaceHolder id="Place"
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="C#" AutoEventWireup="True" %>
<script runat="server" >
void Page_Load(Object sender, EventArgs e)
{
// Create an HtmlTextArea control.
HtmlTextArea area = new HtmlTextArea();
area.ID = "TextArea1";
area.Value = "Enter text here.";
area.Cols = 20;
area.Rows = 5;
// Add the control to the Controls collection of the
// PlaceHolder control.
Place.Controls.Clear();
Place.Controls.Add(area);
}
</script>
<html>
<head>
<title>HtmlTextArea Constructor Example</title>
</head>
<body>
<form runat="server">
<h3>HtmlTextArea Constructor Example</h3>
<asp:PlaceHolder id="Place"
runat="server"/>
</form>
</body>
</html>
Plattformen
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
HtmlTextArea-Klasse
HtmlTextArea-Member
System.Web.UI.HtmlControls-Namespace