I am trying to create a simple calculator with an ASP.Net ajax slider - I have the basic slider working with text field to display the values. I would like to add additional labels that display the result of formulas based on the slider value.
<div><asp:TextBox ID="Slider1" runat="server" OnTextChanged="Slider1_TextChanged"></asp:TextBox><br /><asp:Label ID="Label2" runat="server" server="" Text="PSP Budget Amount" Width="150"></asp:Label><asp:TextBox ID="Slider1_Boundcontrol" ToolTip="Display Value?" runat="server" Width="75" style="text-align:right"
OnTextChanged="Slider1_Boundcontrol_TextChanged"></asp:TextBox><br /><br /><ajaxToolkit:SliderExtender ID="SliderExtender1" runat="server" BehaviorID="Slider1" TargetControlID="Slider1"
BoundControlID="Slider1_Boundcontrol" Orientation="Horizontal" EnableHandleAnimation="true" /><br /></div>