Hi/P>
Another new inclusion in the list of controls in asp.net is the Bulleted List control./P>
Lets say if we want to show the list of values (For me a good use was to view all the values from the word file for Autosuggest Box), this control will be of great use. You can also format the bullets. To specify individual items that we want to appear in the list we can use the List Item tag also./P>
BulletedList controls can display list of items with a variety of bullet styles. Use the /P>
BulletedList.BulletSyle/B> property to control the style of the bulleted list./P>
Here is an example of Bulleted List control/P>
<asp:BulletedList ID=BulletedList1 BulletStyle="Circle" runat=server>/o:p>
/SPAN><asp:ListItem>Vikram #1<//asp:ListItem>/o:p>
/SPAN><asp:ListItem> Vikram #2<//asp:ListItem>/o:p>
/SPAN><asp:ListItem> Vikram #3<//asp:ListItem>/o:p>
/SPAN>/o:p><//asp:BulletedList>/o:p>/SPAN>
The bulleted list can also render a list of Hyperlinks. Use the following code to show a list of Hyperlink/SPAN>/P><asp:BulletedList DisplayMode = HyperLink runat=server>/o:p>
/SPAN><asp:ListItem Value="www.vikramlakhotia.com">Vikram<//asp:ListItem>/o:p>
/SPAN><asp:ListItem Value="http:////www.asp.net">ASP.NET<//asp:ListItem>/o:p>
/SPAN><asp:ListItem Value="http:////msdn.microsoft.com">MSDN<//asp:ListItem>/o:p>
<//asp:BulletedList>/o:p>/SPAN>/PRE>
Hope this helps
Thanks
Vikram/P>