3. FrmCheckBoxList.aspx 페이지에 다음과 같이 입력한다. 3개의 체크박스를 만들고 하나의 이름인 lstHobby로 관리할 수 있다.
▼ FrmCheckBoxList.aspx
<%@ Page Language=“C#” AutoEventWireup=“true” CodeBehind=“FrmCheckBoxList.aspx.cs” Inherits=“DevStandardControl.FrmCheckBoxList” %> <!DOCTYPE html> <html xmlns=“http://www.w3.org/1999/xhtml"> <head runat=“server”> <meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” /> <title>체크박스리스트 컨트롤</title> </head> <body> <form id=“form1” runat=“server”> <div> <asp:CheckBoxList ID=“lstHobby” runat=“server” RepeatDirection=“Horizontal” RepeatLayout=“Flow” RepeatColumns=“2” > <asp:ListItem Selected=“True”>축구</asp:ListItem> <asp:ListItem>농구</asp:ListItem> <asp:ListItem>배구</asp:ListItem> </asp:CheckBoxList> <hr /> <asp:LinkButton ID=“btnOK” runat=“server” OnClick=“btnOK_Click”>확인</asp:LinkButton> <hr /> <asp:Label ID=“lblDisplay” runat=“server”></asp:Label> </div> </form> </body> </html>