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 상태를 설정 하는 데 사용할 수도 있습니다.