?
This document uses PHP Chinese website manual Release
BulletImageUrl 屬性用于獲取或設(shè)置當(dāng) BulletStyle 屬性設(shè)置為 "CustomImage" 時(shí)所用圖像的 URL。
<asp:BulletedList BulletImageUrl="url" runat="server">
Some Content
</asp:BulletedList>
屬性 | 描述 |
---|---|
url | 字符串值,規(guī)定要作為項(xiàng)目符號(hào)來使用的圖像的 URL。 |
下面的實(shí)例設(shè)置了 BulletedList 控件的 BulletImageUrl:
<form runat="server">
<asp:BulletedList id="bl1" runat="server"
BulletImageUrl="image.gif">
Some content
</asp:BulletedList>
</form>