HtmlInputCheckBox-Konstruktor
Initialisiert eine neue Instanz der HtmlInputCheckBox-Klasse.
Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in system.web.dll)
Syntax
'Declaration
Public Sub New
'Usage
Dim instance As New HtmlInputCheckBox
public HtmlInputCheckBox ()
public:
HtmlInputCheckBox ()
public HtmlInputCheckBox ()
public function HtmlInputCheckBox ()
Hinweise
Mit diesem Konstruktor können Sie eine neue Instanz der HtmlInputCheckBox-Klasse erstellen und initialisieren.
In der folgenden Tabelle ist der anfängliche Eigenschaftenwert für eine Instanz von HtmlInputCheckBox aufgeführt.
Eigenschaft |
Anfangswert |
---|---|
TagName |
Das Zeichenfolgenliteral "checkbox". |
Beispiel
Im folgenden Codebeispiel wird das Erstellen und Initialisieren einer neuen Instanz der HtmlInputCheckBox-Klasse veranschaulicht.
<%@ Page Language="VB" AutoEventWireup="True" %>
<html>
<head>
<script language="VB" runat="server">
' Create a new instance of HtmlInputCheckBox.
Dim cb As New HtmlInputCheckBox()
' Create a new instance of Label.
Dim label As New Label()
' Create a new instance of Button.
Dim b As New HtmlButton()
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
' Define attributes of Button and Label.
b.InnerText = "Click"
label.Text = "checkbox"
' Add controls to placeholder
Container.Controls.Add(cb)
Container.Controls.Add(label)
Container.Controls.Add(New LiteralControl("<br>"))
Container.Controls.Add(b)
' Add EventHandler
AddHandler b.ServerClick, AddressOf button_ServerClick
End Sub
Sub button_ServerClick(ByVal sender As Object, ByVal e As EventArgs)
Select Case cb.Checked
Case True
Message.InnerHtml = "Checkbox is checked."
Case Else
Message.InnerHtml = "Checkbox is not checked."
End Select
End Sub
</script>
</head>
<body>
<h3>HtmlInputCheckBox Constructor Sample</h3>
<form id="Form1" runat="server">
<asp:PlaceHolder id="Container" runat="server"></asp:PlaceHolder>
<br />
<span id="Message"
style="color:red"
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="C#" AutoEventWireup="True" %>
<html>
<head>
<script language="C#" runat="server">
// Create a new instance of HtmlInputCheckBox.
HtmlInputCheckBox cb = new HtmlInputCheckBox();
// Create a new instance of Label.
Label label = new Label();
// Create a new instance of Button.
HtmlButton b = new HtmlButton();
protected void Page_Load(object sender, EventArgs e)
{
// Define attributes of Button and Label.
b.InnerText = "Click";
label.Text = "checkbox";
// Add controls to placeholder
Container.Controls.Add(cb);
Container.Controls.Add(label);
Container.Controls.Add(new LiteralControl("<br>"));
Container.Controls.Add(b);
// Add EventHandler
b.ServerClick += new EventHandler(button_ServerClick);
}
void button_ServerClick(object sender, EventArgs e)
{
switch (cb.Checked)
{
case true:
Message.InnerHtml = "Checkbox is checked.";
break;
default:
Message.InnerHtml = "Checkbox is not checked.";
break;
}
}
</script>
</head>
<body>
<h3>HtmlInputCheckBox Constructor Sample</h3>
<form runat="server">
<asp:PlaceHolder id="Container" runat="server"></asp:PlaceHolder>
<br />
<span id="Message"
style="color:red"
runat="server"/>
</form>
</body>
</html>
void Page_Load(Object sender, EventArgs e)
{
HtmlInputCheckBox checkBox = new HtmlInputCheckBox();
} //Page_Load
function Page_Load(sender : Object, e : EventArgs){
var checkBox : HtmlInputCheckBox = new HtmlInputCheckBox()
}
Plattformen
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 unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
HtmlInputCheckBox-Klasse
HtmlInputCheckBox-Member
System.Web.UI.HtmlControls-Namespace