3. FrmBulletedList.aspx 페이지에 다음과 같이 입력한다. 불릿리스트 컨트롤은 HTML의 리스트를 출력하는 컨트롤이다. BulletStyle 속성에 따라서 순서 있는 목록과 순서 없는 목록을 구분해서 출력할 수 있다. 그리고 각각의 항목을 클릭했을 때 클릭한 값을 가져올 수 있도록 Click 이벤트를 제공한다. 다음 소스는 ListItem 컨트롤을 사용해 세 항목을 세 가지 모양으로 등록한다.
▼ FrmBulletedList.aspx
<%@ Page Language=“C#” AutoEventWireup=“true” CodeBehind=“FrmBulletedList.aspx.cs” Inherits=“DevStandardControl. FrmBulletedList” %> <!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:BulletedList ID=“lstFavorite” runat=“server” BulletStyle=“Numbered” DisplayMode=“LinkButton” OnClick=“lstFavorite_Click”> <asp:ListItem>Windows Server</asp:ListItem> <asp:ListItem Text=“SQL Server” Value=“시퀄서버”></asp:ListItem> <asp:ListItem Value=“비주얼스튜디오”>Visual Studio</asp:ListItem> </asp:BulletedList> </div> </form> </body> </html>