I am looking for something similar to the OnTextChanged
property of a TextBox control. So that when the Text value of a label is changed, a particular function is called to do my particular staff.
MarkUp
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
<asp:SliderExtender ID="SliderExtender1" TargetControlID="TextBox2" BoundControlID="Label1" Maximum="200" Minimum="100" runat="server">
</asp:SliderExtender>