HtmlInputCheckBox.Checked 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出是否已選取 HtmlInputCheckBox。
public:
property bool Checked { bool get(); void set(bool value); };
public bool Checked { get; set; }
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.MinimizableAttributeTypeConverter))]
public bool Checked { get; set; }
member this.Checked : bool with get, set
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.MinimizableAttributeTypeConverter))>]
member this.Checked : bool with get, set
Public Property Checked As Boolean
屬性值
如果 HtmlInputCheckBox 已經選取則為 true
,否則為 false
。
- 屬性
範例
下列程式碼範例示範一組回應,讓使用者從控制項群組 HtmlInputCheckBox 中選取。
<%@ Page Language="C#" %>
<!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 language="C#" runat="server">
protected void SubmitBtn_Click(object sender, EventArgs e)
{
if (Basketball.Checked)
{
// You like basketball
}
if (Football.Checked)
{
// You like football
}
if (Soccer.Checked)
{
// You like soccer
}
}
</script>
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
Enter Interests:
<input id="Basketball" checked="checked" type="checkbox" runat="server" /> Basketball
<input id="Football" type="checkbox" runat="server" /> Football
<input id="Soccer" type="checkbox" runat="server" /> Soccer
<input id="Button1" type="button" value="Enter" onserverclick="SubmitBtn_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 language="VB" runat="server">
Sub SubmitBtn_Click (Source As Object, ByVal E as EventArgs)
If (Basketball.Checked = true) Then
' You like basketball
End If
If (Football.Checked = true) Then
' You like football
End If
If (Soccer.Checked = true) Then
' You like soccer
End If
End Sub
</script>
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" method="post" runat="server">
Enter Interests:
<input id="Basketball" checked="checked" type="checkbox" runat="server" /> Basketball
<input id="Football" type="checkbox" runat="server" /> Football
<input id="Soccer" type="checkbox" runat="server" /> Soccer
<input type="button" value="Enter" onserverclick="SubmitBtn_Click" runat="server" />
</form>
</body>
</html>
備註
使用這個屬性來判斷是否已 HtmlInputCheckBox 選取控制項。 這個屬性也可以用來以程式設計方式設定控制項的狀態 HtmlInputCheckBox 。