---
title: "Ajax Toolkit PagingBulletedListExtender in ASP.Net"  
description: "PagingBulletedList is an ASP.NET AJAX Extender that can be attached to an ASP.NET BulletedList control and provide client-side sorted paging. TargetCo"  
author: "John Smith"  
published: 2010-12-02  
updated: 2020-01-27  
canonical: https://www.mindstick.com/articles/275/ajax-toolkit-pagingbulletedlistextender-in-asp-dot-net  
category: "ajax"  
tags: ["ajax"]  
reading_time: 1 minute  

---

# Ajax Toolkit PagingBulletedListExtender in ASP.Net

PagingBulletedList is an [ASP.NET](https://www.mindstick.com/articles/155/concept-of-asp-dot-net) AJAX Extender that can be attached to an ASP.NET BulletedList [control](https://yourviews.mindstick.com/view/83439/bipartisan-gun-control-bill-passed-in-us-after-decades) and provide [client](https://www.mindstick.com/articles/23198/3-steps-to-ensure-that-your-client-portal-is-impeccable)-side sorted [paging](https://www.mindstick.com/forum/268/full-data-paging-in-data-list-control). ***TargetControl*** of PagingBulletedListExtender can only be a BulletedList.\

**PagingBulletedList [Properties](https://yourviews.mindstick.com/view/81845/now-it-s-possible-to-predict-properties-of-any-molecule):**

· **TargetControlID** - The ID of the BulletedList to page

· **ClientSort** - Whether or not the [items](https://www.mindstick.com/articles/44359/store-your-valuable-items-in-a-mini-storage-unit) should be sorted client-side

## Code:

Add the scriptmanager , PagingBulletedListExtender and bullted list control

```
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>  <cc1:PagingBulletedListExtender ID="PagingBulletedListExtender1" runat="server" TargetControlID="BulletedList1"ClientSort="true"></cc1:PagingBulletedListExtender>  <asp:BulletedList ID="BulletedList1" runat="server">            <asp:ListItem>c#</asp:ListItem>            <asp:ListItem>India</asp:ListItem>            <asp:ListItem>Pak</asp:ListItem>            <asp:ListItem>Indian</asp:ListItem>            <asp:ListItem>1</asp:ListItem>            <asp:ListItem>1 car buy</asp:ListItem>            <asp:ListItem>3 bike</asp:ListItem>            <asp:ListItem>2 port dmaged</asp:ListItem>            <asp:ListItem>3 cycle</asp:ListItem>            <asp:ListItem>2 port are going two repair</asp:ListItem> </asp:BulletedList>
```

Here item is added in the BulletedList.

Here TargetControlID is "BulletedList1" in which paging will be [apply](https://www.mindstick.com/articles/13148/discover-to-apply-make-up-like-a-professional-supermodel)

**Run the [project](https://yourviews.mindstick.com/story/1788/things-to-ensure-your-construction-project-is-successful)**

![AjaxControl Toolkit PagingBulletedListExtender in ASP.Net](https://www.mindstick.com/mindstickarticle/4b80d15c-5092-4f71-a5db-4e484ddf7830/images/6dc736ce-dff9-47ae-bcbc-10ecfe032888.png)

ClientSort property of PagingBulletedListExtender automatically sorted the value whenClientSort="true" as shown below.

When you click 1 then all value start with 1 are displayed.

![AjaxControl Toolkit PagingBulletedListExtender in ASP.Net](https://www.mindstick.com/mindstickarticle/4b80d15c-5092-4f71-a5db-4e484ddf7830/images/b657d404-517d-4e78-a878-38af81049dbf.png)

When you [click](https://www.mindstick.com/articles/12423/social-login-magento-2-one-click-to-register-social) 2 then all [value](https://www.mindstick.com/articles/23219/an-optimized-description-adds-value-to-experience-and-in-turn-effectively-guest-posting-packages) start with 2 are displayed.

![AjaxControl Toolkit PagingBulletedListExtender in ASP.Net](https://www.mindstick.com/mindstickarticle/4b80d15c-5092-4f71-a5db-4e484ddf7830/images/a0bf8489-cd9d-4e6f-9669-b95e777d2f9a.png)

---

Original Source: https://www.mindstick.com/articles/275/ajax-toolkit-pagingbulletedlistextender-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
