HtmlInputText 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 HtmlInputText 类的新实例。
重载
HtmlInputText() |
使用默认值初始化 HtmlInputText 类的新实例。 |
HtmlInputText(String) |
使用指定的输入控件类型初始化 HtmlInputText 类的新实例。 |
HtmlInputText()
使用默认值初始化 HtmlInputText 类的新实例。
public:
HtmlInputText();
public HtmlInputText ();
Public Sub New ()
示例
<%@ 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>
注解
使用此构造函数可以使用默认值创建和初始化 控件的新实例 HtmlInputText 。 它创建一个 text
类型文本框控件。
下表显示了 实例 HtmlInputText的初始属性值。
properties | 初始值 |
---|---|
Type | “text”文本字符串。 |
另请参阅
适用于
HtmlInputText(String)
使用指定的输入控件类型初始化 HtmlInputText 类的新实例。
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)
参数
- type
- String
输入控件的类型。
示例
<%@ 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>
注解
使用此构造函数可以使用指定的输入控件类型创建和初始化控件的新实例 HtmlInputText 。 它允许创建特定类型的文本框控件,例如 password
。 目前仅 password
支持 或 text
类型。 此构造函数旨在允许创建其他文本框类型(如果它们可用)。
下表显示了 实例 HtmlInputText的初始属性值。
properties | 初始值 |
---|---|
Type |
type 参数的值。 |
注意
尽管可以使用此构造函数创建 text
类型文本框控件,但通常改用无参数构造函数。