ASP.NET BulletStyle Property
Definition and Usage
The BulletStyle property is used to get or set the style of the list bullet points.
Syntax
<asp:BulletedList BulletStyle="style" runat="server"> some content </asp:BulletedList>
Property | Description |
---|---|
style |
Specifies the style of the list bullet points. Possible Values:
|
Example
The following example sets the BulletStyle property of the BulletedList control:
<form runat="server"> <asp:BulletedList id="bl1" runat="server" BulletStyle="Numbered"> Some content </asp:BulletedList> </form>
Example
- Set the BulletStyle Property of the BulletedList Control