---
title: "Bulleted List Control in ASP.Net"  
description: "Bulleted List control is used to create a list of items formatted with bullets such as circular bullets, rectangle bullets etc. To specify the individ"  
author: "Pushpendra Singh"  
published: 2010-10-18  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/171/bulleted-list-control-in-asp-dot-net  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Bulleted List Control in ASP.Net

Bulleted List [control](https://yourviews.mindstick.com/view/83439/bipartisan-gun-control-bill-passed-in-us-after-decades) is used to create a list of [items](https://www.mindstick.com/articles/44359/store-your-valuable-items-in-a-mini-storage-unit) formatted with bullets such as circular bullets, rectangle bullets etc. To specify the individual list items in the list, you [put](https://answers.mindstick.com/qa/37572/should-schools-put-tracking-devices-in-students-id-cards) a List [Item](https://www.mindstick.com/forum/156564/remove-item-in-an-array-in-javascript) control for each list [entry](https://www.mindstick.com/forum/23197/iterate-over-each-entry-in-a-map) between the opening and closing [tags](https://answers.mindstick.com/qa/106068/how-to-use-instagram-shopping-tags-for-seamless-e-commerce-integration) of the Bulleted List control as shown in [code](https://yourviews.mindstick.com/view/85458/alan-turing-the-mastermind-behind-cracking-the-enigma-code-during-world-war-ii) below.\

```
<asp:BulletedList ID="BulletedList1" runat="server"> <asp:ListItem>1</asp:ListItem>      <asp:ListItem>2</asp:ListItem> <asp:ListItem>3</asp:ListItem> <asp:ListItem>4</asp:ListItem> <asp:ListItem>5</asp:ListItem> <asp:ListItem>6</asp:ListItem></asp:BulletedList>
```

![Bulleted List Control in ASP.Net](https://www.mindstick.com/mindstickarticle/dbd49457-27c9-4cf2-a691-d4be1af961d5/images/4e220285-0864-4041-981a-2cf6a51cf22b.png) ![Bulleted List Control in ASP.Net](https://www.mindstick.com/mindstickarticle/dbd49457-27c9-4cf2-a691-d4be1af961d5/images/5543bc99-74a2-4297-a9c3-bdd54760ed46.png)

![Bulleted List Control in ASP.Net](https://www.mindstick.com/mindstickarticle/dbd49457-27c9-4cf2-a691-d4be1af961d5/images/32ecfd27-eafc-4737-a0cc-20a2ff12de15.png)

We can change bullet style by Bullet Style property.

Another important attribute of Bulleted List is Display Mode, which represents the display mode of the bulleted list. For example, if you want to create a bulleted list with hyperlinks, you need to set the Display Mode to Hyperlink.

```
<asp:BulletedList ID="BulletedList1" runat="server" DisplayMode="HyperLink"><asp:ListItem>1</asp:ListItem> <asp:ListItem>2</asp:ListItem> <asp:ListItem>3</asp:ListItem> <asp:ListItem>4</asp:ListItem> <asp:ListItem>5</asp:ListItem> <asp:ListItem>6</asp:ListItem> </asp:BulletedList>
```

![Bulleted List Control in ASP.Net](https://www.mindstick.com/mindstickarticle/dbd49457-27c9-4cf2-a691-d4be1af961d5/images/368d41ad-2273-48f7-ab62-8a3af43116ba.png) ![Bulleted List Control in ASP.Net](https://www.mindstick.com/mindstickarticle/dbd49457-27c9-4cf2-a691-d4be1af961d5/images/3a097966-de83-478c-a3d3-e2582b7329ee.png)

## We can change bulleted list appearance

```
<asp:BulletedList ID="BulletedList1" runat="server" BulletStyle="Square"  DisplayMode="HyperLink" Font-Bold="True" Font-Italic="True" Font-       Names="Arial"ForeColor="Red"> <asp:ListItem>1</asp:ListItem> <asp:ListItem>2</asp:ListItem> <asp:ListItem>3</asp:ListItem> <asp:ListItem>4</asp:ListItem> <asp:ListItem>5</asp:ListItem> <asp:ListItem>6</asp:ListItem></asp:BulletedList>
```

![Bulleted List Control in ASP.Net](https://www.mindstick.com/mindstickarticle/dbd49457-27c9-4cf2-a691-d4be1af961d5/images/3a097966-de83-478c-a3d3-e2582b7329ee.png)

---

Original Source: https://www.mindstick.com/articles/171/bulleted-list-control-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
