ASP.NET BulletStyle property
Definition and usage
The BulletStyle property is used to get or set the style of the item 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