How to set the value to the sliderextender dynamically from the code behind(c#)..
say , i have the following sliderextender ,
<asp:TextBox ID="txtslidetarget" runat="server" Visible="True">
<asp:TextBox ID="txtslidebound" runat="server" Visible="true">
<asp:SliderExtender ID="SliderExtender1" runat="server" TargetControlID="txtslidetarget"
Length="150" Decimals="1" Minimum="0" Maximum="10" EnableHandleAnimation="true" BoundControlID="txtslidebound">
i want the slider to be in 3.. i want to set this dynamically from the code behind in page load.. can anyone help me..
Thanks..
Suthish NairPosted Apr 18, 2011, 2:04 PM
Blocked AccountPosted Apr 18, 2011, 1:52 AM
write this on Page_Load event
SliderExtender1.Value = 3;
Arunkumar EmmPosted Apr 18, 2011, 1:21 AM
Suthish NairPosted Apr 15, 2011, 10:00 AM