When using ASP.NET to create web application, you have the ability to use ASP.NET BulletedList Control to create a bulleted list format for an ASP.NET .aspx web page. This control was first introduced in ASP.NET 2.0. When using ASP.NET BulletedList Control every item in the control is defined by a ListItem Element.
Here is a quick tutorial on adding your very own ASP.NET BulletedList Control.
- Go to the Toolbox and under the Standard section, select BulletedList Control.
ASP.NET BulletedList Control
- Drag and drop it onto the Form area to declare it.
- The following is the code excerpt you get in the Source View.
<asp:BulletedList ID=”BulletedList1″ runat=”server”>
</asp:BulletedList>
For more on how to use ASP.NET BulletedList Control check out the examples at www.aspnetbook.com