HtmlInputText Konstruktoren

Definition

Initialisiert eine neue Instanz der HtmlInputText-Klasse.

Überlädt

Name Beschreibung
HtmlInputText()

Initialisiert eine neue Instanz der HtmlInputText Klasse mithilfe von Standardwerten.

HtmlInputText(String)

Initialisiert eine neue Instanz der HtmlInputText Klasse mithilfe des angegebenen Eingabesteuerelementtyps.

HtmlInputText()

Initialisiert eine neue Instanz der HtmlInputText Klasse mithilfe von Standardwerten.

public:
 HtmlInputText();
public HtmlInputText();
Public Sub New ()

Beispiele

<%@ Page Language="C#" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
   <script runat="server" >
  
      void Page_Load(Object sender, EventArgs e)
      {

         // Create an HtmlInputText control.
         HtmlInputText text = new HtmlInputText();
         text.Value = "Enter a value.";
         text.MaxLength = 20;
         text.Size = 22;
 
         // Add the control to the Controls collection of the 
         // PlaceHolder control.
         Place.Controls.Clear();
         Place.Controls.Add(text);
         
      }
  
   </script>
  
<head runat="server">
    <title> HtmlInputText Constructor Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> HtmlInputText Constructor Example </h3> 
  
      <asp:PlaceHolder id="Place" runat="server"/>
  
   </form>

</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
   <script runat="server" >
  
      Sub Page_Load(sender As Object, e As EventArgs)

         ' Create an HtmlInputText control.
         Dim text As HtmlInputText = New HtmlInputText()
         text.Value = "Enter a value."
         text.MaxLength = 20
         text.Size = 22
 
         ' Add the control to the Controls collection of the 
         ' PlaceHolder control.
         Place.Controls.Clear()
         Place.Controls.Add(text)
         
      End Sub
  
   </script>
  
<head runat="server">
    <title> HtmlInputText Constructor Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> HtmlInputText Constructor Example </h3> 
  
      <asp:PlaceHolder id="Place" runat="server"/>
  
   </form>

</body>
</html>

Hinweise

Verwenden Sie diesen Konstruktor, um eine neue Instanz des HtmlInputText Steuerelements mithilfe von Standardwerten zu erstellen und zu initialisieren. Es wird ein text Textfeld-Typ-Steuerelement erstellt.

Die folgende Tabelle zeigt den anfänglichen Eigenschaftswert für eine Instanz von HtmlInputText.

Property Anfangswert
Type Die Literalzeichenfolge "text".

Weitere Informationen

Gilt für:

HtmlInputText(String)

Initialisiert eine neue Instanz der HtmlInputText Klasse mithilfe des angegebenen Eingabesteuerelementtyps.

public:
 HtmlInputText(System::String ^ type);
public HtmlInputText(string type);
new System.Web.UI.HtmlControls.HtmlInputText : string -> System.Web.UI.HtmlControls.HtmlInputText
Public Sub New (type As String)

Parameter

type
String

Der Typ des Eingabesteuerelements.

Beispiele

<%@ Page Language="C#" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
   <script runat="server" >
  
      void Page_Load(Object sender, EventArgs e)
      {

         // Create an HtmlInputText control.
         HtmlInputText text = new HtmlInputText("password");
         text.MaxLength = 20;
         text.Size = 22;
 
         // Add the control to the Controls collection of the 
         // PlaceHolder control.
         Place.Controls.Clear();
         Place.Controls.Add(text);
         
      }

      void Button_Click(Object sender, EventArgs e)
      {

         // Insert secure authentication here.
         // Make sure to use SSL to secure the connection.

      }
  
   </script>
  
<head runat="server">
    <title> HtmlInputText Constructor Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> HtmlInputText Constructor Example </h3> 
  
      Enter your password: <br />
      <asp:PlaceHolder id="Place" runat="server"/>

      <br /><br />
 
      <input type="submit"
             value="Submit"
             onserverclick="Button_Click" 
             runat="server"/> 
  
   </form>

</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
   <script runat="server" >
  
      Sub Page_Load(sender As Object, e As EventArgs)

         ' Create an HtmlInputText control.
         Dim text As HtmlInputText = New HtmlInputText("password")
         text.MaxLength = 20
         text.Size = 22
 
         ' Add the control to the Controls collection of the 
         ' PlaceHolder control.
         Place.Controls.Clear()
         Place.Controls.Add(text)
         
      End Sub

      Sub Button_Click(sender As Object, e As EventArgs)

         ' Insert secure authentication here.
         ' Make sure to use SSL to secure the connection.

      End Sub
  
   </script>
  
<head runat="server">
    <title> HtmlInputText Constructor Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> HtmlInputText Constructor Example </h3> 
  
      Enter your password: <br />
      <asp:PlaceHolder id="Place" runat="server"/>

      <br /><br />
 
      <input type="submit"
             value="Submit"
             onserverclick="Button_Click" 
             runat="server"/> 
  
   </form>

</body>
</html>

Hinweise

Verwenden Sie diesen Konstruktor, um eine neue Instanz des HtmlInputText Steuerelements mithilfe des angegebenen Eingabesteuerelementtyps zu erstellen und zu initialisieren. Es ermöglicht Ihnen, einen bestimmten Typ von Textfeld-Steuerelementen zu erstellen, z password. B. . Nur der Typ oder text der password Typ wird derzeit unterstützt. Dieser Konstruktor ist so konzipiert, dass Sie andere Textfeldtypen erstellen können, wenn diese verfügbar sind.

Die folgende Tabelle zeigt den anfänglichen Eigenschaftswert für eine Instanz von HtmlInputText.

Property Anfangswert
Type Der Wert des type Parameters.

Note

Obwohl Sie diesen Konstruktor verwenden können, um ein text Textfeld-Typ-Steuerelement zu erstellen, wird stattdessen der parameterlose Konstruktor häufig verwendet.

Weitere Informationen

Gilt für: