Posted on: 1/14/2014 7:25:13 PM | Views : 844

i am using slider extender to take user input in textbox. for i am using this code . but when i try to slide the bar then it show only two value in textbox i.e it's maximum value 100 and minimum value 1. this is my code.
<td> <asp:TextBox ID="txtCopies" Width="70" runat="server"></asp:TextBox><br /> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:SliderExtender ID="SliderExtender1" EnableHandleAnimation="true" BoundControlID="TextBox1" runat="server" TargetControlID="txtCopies" Minimum="1" Maximum="100" Steps="1"> </asp:SliderExtender> </td>
this code is insode my update panel . i am unable to slide the slider. it moves only at it's minimum and maximum value < ...

Go to the complete details ...