ASP.NET BulletImageUrl Property
Definition and Usage
The BulletImageUrl property is used to get or set the URL of the image used when the BulletStyle property is set to "CustomImage".
Syntax
<asp:BulletedList BulletImageUrl="url" runat="server"> some content </asp:BulletedList>
Property | Description |
---|---|
url | A string value that specifies the URL of the image to be used as a bullet. |
Example
The following example sets the BulletImageUrl of the BulletedList control:
<form runat="server"> <asp:BulletedList id="bl1" runat="server"> BulletImageUrl="image.gif"> Some content </asp:BulletedList> </form>
Example
- Set the BulletImageUrl of RadioButtonList Control