How do I make a BulletList display a bullet?

  • Thread starter Thread starter Steve Kershaw
  • Start date Start date
S

Steve Kershaw

Hi,

I have a BulletList that I fill with the BulletList1.Items.Add("text
here"); method. When I display this BulletList I don't get the bullet
displayed. I've tried:
BulletedList1.BulletImageUrl = "~/Images/BulletedList/Bullet.jpg"; but
it still dosen't display any bullet.

Am I missing something here?

Thanks for your help.

Steve
 
Did you try setting the BulletStyle property?

Hi,

I have a BulletList that I fill with the BulletList1.Items.Add("text
here"); method. When I display this BulletList I don't get the bullet
displayed. I've tried:
BulletedList1.BulletImageUrl = "~/Images/BulletedList/Bullet.jpg"; but
it still dosen't display any bullet.

Am I missing something here?

Thanks for your help.

Steve
 
Yes I did try the BulletStyle property without success. Here is a code
snippit of what I did:

BulletedList1.Items.Clear();
BulletedList1.BulletStyle = BulletStyle.CustomImage;
BulletedList1.BulletImageUrl = Resources.Resource.BulletLocation;

BulletedList1.Items.Add(Resources.Resource.Benefit1);

Thanks for your help.

Steve
 
Back
Top