HtmlInputText Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase HtmlInputText.
Sobrecargas
HtmlInputText() |
Inicializa una nueva instancia de la clase HtmlInputText con los valores predeterminados. |
HtmlInputText(String) |
Inicializa una nueva instancia de la clase HtmlInputText utilizando el tipo de control de entrada especificado. |
HtmlInputText()
Inicializa una nueva instancia de la clase HtmlInputText con los valores predeterminados.
public:
HtmlInputText();
public HtmlInputText ();
Public Sub New ()
Ejemplos
<%@ 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>
Comentarios
Use este constructor para crear e inicializar una nueva instancia del HtmlInputText control mediante valores predeterminados. Crea un text
control de cuadro de texto de tipo.
En la tabla siguiente se muestra el valor de propiedad inicial de una instancia de HtmlInputText.
Propiedad | Valor inicial |
---|---|
Type | Cadena literal "text". |
Consulte también
Se aplica a
HtmlInputText(String)
Inicializa una nueva instancia de la clase HtmlInputText utilizando el tipo de control de entrada especificado.
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)
Parámetros
- type
- String
Tipo de control de entrada.
Ejemplos
<%@ 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>
Comentarios
Use este constructor para crear e inicializar una nueva instancia del HtmlInputText control mediante el tipo de control de entrada especificado. Permite crear un tipo específico de control de cuadro de texto, como password
. Actualmente solo se admite el password
tipo o text
. Este constructor está diseñado para permitirle crear otros tipos de cuadro de texto si están disponibles.
En la tabla siguiente se muestra el valor de propiedad inicial de una instancia de HtmlInputText.
Propiedad | Valor inicial |
---|---|
Type | Valor del parámetro type . |
Nota:
Aunque puede usar este constructor para crear un text
control de cuadro de texto de tipo, el constructor sin parámetros se usa normalmente en su lugar.