Latest web development tutorials

ASP.NET BulletedList BulletImageUrl property

BulletedList control BulletedList control

Definition and Usage

BulletImageUrl property gets or sets the URL when BulletStyle property is set to "CustomImage" when used in the image.

grammar

<asp:BulletedList BulletImageUrl="url" runat="server">
Some Content
</asp:BulletedList>

属性 描述
url 字符串值,规定要作为项目符号来使用的图像的 URL。


Examples

The following examples set BulletImageUrl BulletedList control:

<form runat="server">
<asp:BulletedList id="bl1" runat="server"
BulletImageUrl="image.gif">

Some content

</asp:BulletedList>
</form>

The demonstration >>

BulletedList control BulletedList control