I currently have a slider control that looks like this:
<cc1:SliderExtender ID="sliderTest" runat="server" Enabled="True"
TargetControlID="txtBoxTest" BoundControlID="lblTestSlider"
Decimals="0" Maximum="10" Minimum="0"
EnableHandleAnimation="true">
</cc1:SliderExtender>
<asp:TextBox ID="txtBoxTest" runat="server"></asp:TextBox>
<asp:Label ID="lblTestSlider" runat="server"></asp:Label>
It works, and as the slider moves the number changes from 0 to 10. Great!
What I now want to do is change the slider label (lblTestSlider) to show different text for each value from 0 to 10 (10 different text values) rather than the number. How can I do this?