Mega Code Archive

 
Categories / ASP.Net Tutorial / ASP Net Controls
 

A simple BulletedList control

<%@ Page Language="C#" %> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>BulletedList Server Control</title> </head> <body>     <form id="form1" runat="server">         <asp:BulletedList ID="Bulletedlist1" Runat="server">             <asp:ListItem>United States</asp:ListItem>             <asp:ListItem>United Kingdom</asp:ListItem>             <asp:ListItem>Finland</asp:ListItem>             <asp:ListItem>Russia</asp:ListItem>             <asp:ListItem>Sweden</asp:ListItem>             <asp:ListItem>Estonia</asp:ListItem>         </asp:BulletedList>     </form> </body> </html>