TextBox.TagKey プロパティ
アセンブリ: System.Web (system.web.dll 内)

テキスト ボックスが複数行テキスト ボックスである場合は HtmlTextWriterTag.Textarea。それ以外の場合は Input。

Tagkey プロパティを使用して、カスタム テキスト ボックスを作成する方法を次のコード例に示します。
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.VB.Controls" Assembly="Samples.AspNet.VB" %> <%@ Page Language="VB" AutoEventWireup="True" %> <HTML> <HEAD> <title>Custom TextBox - TagKey - VB.NET Example</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> <h3>Custom TextBox - TagKey - VB.NET Example</h3> <aspSample:CustomTextBoxTagKey id="TextBox1" runat="server">Hello World! </aspSample:CustomTextBoxTagKey> </form> </body> </HTML>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.CS.Controls" Assembly="Samples.AspNet.CS" %> <%@ Page Language="C#" AutoEventWireup="True" %> <HTML> <HEAD> <title>Custom TextBox - TagKey - C# Example</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> <h3>Custom TextBox - TagKey - C# Example</h3> <aspSample:CustomTextBoxTagKey id="TextBox1" runat="server">Hello World! </aspSample:CustomTextBoxTagKey> </form> </body> </HTML>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.JSL.Controls" Assembly="Samples.AspNet.JSL" %> <%@ Page Language="VJ#" AutoEventWireup="True" %> <HTML> <HEAD> <title>Custom TextBox - TagKey - VJ# Example</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> <h3>Custom TextBox - TagKey - VJ# Example</h3> <aspSample:CustomTextBoxTagKey id="TextBox1" runat="server" text="Hello World!"> </aspSample:CustomTextBoxTagKey> </form> </body> </HTML>
Imports System.Web Imports System.Security.Permissions Namespace Samples.AspNet.VB.Controls <AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _ Public NotInheritable Class CustomTextBoxTagKey Inherits System.Web.UI.WebControls.TextBox Protected Overrides ReadOnly Property TagKey() As System.Web.UI.HtmlTextWriterTag Get ' If the TextMode is MultiLine, return a Textarea tag, else return an Input tag. If Me.TextMode = System.Web.UI.WebControls.TextBoxMode.MultiLine Then Return System.Web.UI.HtmlTextWriterTag.Textarea Else Return System.Web.UI.HtmlTextWriterTag.Input End If End Get End Property End Class End Namespace
using System.Web; using System.Security.Permissions; namespace Samples.AspNet.CS.Controls { [AspNetHostingPermission(SecurityAction.Demand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class CustomTextBoxTagKey : System.Web.UI.WebControls.TextBox { protected override System.Web.UI.HtmlTextWriterTag TagKey { get { // If the TextMode is MultiLine, return a Textarea tag, // else return an Input tag. if (this.TextMode == System.Web.UI.WebControls.TextBoxMode.MultiLine) { return System.Web.UI.HtmlTextWriterTag.Textarea; } else { return System.Web.UI.HtmlTextWriterTag.Input; } } } } }
package Samples.AspNet.JSL.Controls; public class CustomTextBoxTagKey extends System.Web.UI.WebControls.TextBox { /** @property */ protected System.Web.UI.HtmlTextWriterTag get_TagKey() { // If the TextMode is MultiLine, return a Textarea tag, // else return an Input tag. if (this.get_TextMode().Equals(System.Web.UI.WebControls. TextBoxMode.MultiLine)) { return System.Web.UI.HtmlTextWriterTag.Textarea; } else { return System.Web.UI.HtmlTextWriterTag.Input; } } //get_TagKey } //CustomTextBoxTagKey

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


Weblioに収録されているすべての辞書からTextBox.TagKey プロパティを検索する場合は、下記のリンクをクリックしてください。

- TextBox.TagKey プロパティのページへのリンク