I tried to use the following codes to display a bullet list in asp.net:
String stringBullet = "<UL><LI>point1</LI><LI>po
int2</LI><
/UL>" ;
Label.Text = stringBullet;
But it failed to display the bullet.
When I debug it in Visual Studio, use the "HTML visualization", I can see the stringBullet = "<UL><LI>point1</LI><LI>po
int2</LI><
/UL>" displayed as bullet.
Any help is appreciated
Start Free Trial