HtmlTextArea コンストラクタ
アセンブリ: System.Web (system.web.dll 内)



HtmlTextArea コントロールのインスタンスを作成して Web ページに配置する方法を次のコード例に示します。
<%@ 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>

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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- HtmlTextArea コンストラクタのページへのリンク