---
title: "Ajax Toolkit MultiHandleSliderExtender Control in ASP.Net"  
description: "MultiHandleSliderExtender enable to handle multi slider in .Net web application.  MultiHandleSlider Properties:Minimum - Minimum value allowed.Maximum"  
author: "John Smith"  
published: 2010-12-07  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/271/ajax-toolkit-multihandlesliderextender-control-in-asp-dot-net  
category: "ajax"  
tags: ["ajax"]  
reading_time: 2 minutes  

---

# Ajax Toolkit MultiHandleSliderExtender Control in ASP.Net

MultiHandleSliderExtender enable to handle multi slider in .Net [web application](https://www.mindstick.com/articles/13069/progressive-web-application-pwas-all-you-need-to-know-about).\

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

· **Minimum** - Minimum value allowed.

· **Maximum** - [Maximum value](https://answers.mindstick.com/qa/38240/according-to-recent-rbi-directives-to-banks-how-many-pieces-of-soiled-currency-notes-with-a-maximum-value-of-rs-5-000-can-be-exchanged-at-banks-free-of-charge) allowed.

· **Length** - The length of the graphical slider, in pixels.

· **Decimals** - Number of decimal digits for the value.

· **Steps** - Number of discrete values inside the slider's range.

· **EnableRailClick** - Whether clicking on the rail will move the closest handle to the click location.

· **EnableKeyboard** - Whether slider values can be changed using the [keyboard](https://www.mindstick.com/forum/23117/android-soft-keyboard-close-hide).

· **EnableMouseWheel** - Whether slider values can be changed using the mouse wheel.

· **Increment** - For sliders using keyboard or mouse wheel [support](https://yourviews.mindstick.com/view/81072/pakistan-wants-enmity-not-support-from-india-during-coronavirus-pandemic); determines the number of points to increment or decrement the slider values.

· **BoundControlID** - For backwards [compatibility](https://www.mindstick.com/blog/303291/best-practices-for-working-with-host-apis-security-compatibility-and-performance-considerations), allows using classic Slider properties for a single handle.

· **RaiseChangeOnlyOnMouseUp** - If true, fires the [change event](https://www.mindstick.com/forum/866/jquery-during-slidetoggle-class-change-event) on the extended TextBox only when the left mouse button is released.

· **MultiHandleSliderTargets** - An inner [property](https://www.mindstick.com/articles/198559/an-ownership-of-property-in-hua-hin) describing each handle on the slider.

· **ControlID** - The TextBox or Label whose value is bound to this handle.

## Code:

**Write these codes on [aspx page](https://www.mindstick.com/forum/218/how-do-i-create-an-aspx-page-that-periodically-refreshes-itself)**

```
 <%-- Add three textbox--%><asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><asp:TextBox ID="txtSlider" runat="server" Width="40px"></asp:TextBox> <%-- Add multihandlelsiderExtender control and scriptmanager control also--%>  <cc1:MultiHandleSliderExtender ID="MultiHandleSliderExtender1" runat="server" TargetControlID="txtSlider"BehaviorID="multiHandleSliderOne" Minimum="0" Maximum="100" Steps="50" Length="317"> <MultiHandleSliderTargets><cc1:MultiHandleSliderTarget ControlID="TextBox1" /><cc1:MultiHandleSliderTarget ControlID="TextBox2" /> </MultiHandleSliderTargets></cc1:MultiHandleSliderExtender>
```

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

When you slide left slider then changes value will will show in left textbox and when you slide right slider then changes value will show in reight textbox.

![AjaxControl Toolkit MultiHandleSliderExtender Control in ASP.Net](https://www.mindstick.com/mindstickarticle/c214c6a1-e2eb-489d-9730-3d854c39aba0/images/16da80a8-de87-4e48-b226-506a6462db29.png)

---

Original Source: https://www.mindstick.com/articles/271/ajax-toolkit-multihandlesliderextender-control-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
