4. FrmCheckBox.aspx.cs 파일을 열고 다음과 같이 코드를 작성한다. 체크박스 컨트롤의 항목이 체크된 상태면 Checked 속성 값이 true가 된다. 다음 코드 숨김 파일은 체크박스의 항목이 선택된 상태일 때만 문자열을 묶어서 출력하는 코드다.
▼ FrmCheckBox.aspx.cs
using System; namespace DevStandardControl { public partial class FrmCheckBox : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { // Empty; } protected void btnCheck_Click(object sender, EventArgs e) { string strMsg = “선택한 값:<br />“; if (this.chkCSharp.Checked) { strMsg += chkCSharp.Text + “<br />“; } if (this.chkAspNet.Checked) { strMsg += chkAspNet.Text + “<br />“; } lblDisplay.Text = strMsg; } } }