When I try to run with the below slider, it misbehaves. By that I mean that it does not error out, but it does not act correctly either. Below the code are three images for samples of the behavior. The first image is from the initial load, the other two are after I have tried to mess with the slider buttons. I have been working on this a couple of days and have not found a solution yet. Any help would be greatly appreciated!
<asp:TextBox runat="server" ID="PressureDropTextBox" Style="display:none" /><asp:MultiHandleSliderExtender runat="server"
CssClass="FilterSlider"
Minimum="0"
Maximum="1"
Decimals="2"
Length="265"
EnableInnerRangeDrag="true"
EnableKeyboard="true"
EnableMouseWheel="true"
ShowInnerRail="true"
RaiseChangeOnlyOnMouseUp="false"
TooltipText="{0}"
ID="PressureDropSlider"
BehaviorID="PressureDropSlider"
TargetControlID="PressureDropTextBox"
Enabled="True" HandleAnimationDuration="0.1"><MultiHandleSliderTargets><asp:MultiHandleSliderTarget ControlID="PressureToleranceLowerTextBox" HandleCssClass="handle_horizontal_left" /><asp:MultiHandleSliderTarget ControlID="PressureToleranceUpperTextBox" HandleCssClass="handle_horizontal_right" /></MultiHandleSliderTargets></asp:MultiHandleSliderExtender><br /><asp:Label runat="server" ID="PressureTolerancSliderKeyLabel1" CssClass="FilterLabelLong" Text="0.00" /><asp:TextBox runat="server" ID="PressureToleranceLowerTextBox" CssClass="FilterLabelLong" Text=".1" ReadOnly="true" /><asp:TextBox runat="server" ID="PressureToleranceUpperTextBox" CssClass="FilterLabelShortLeft" Text=".03" ReadOnly="true" /><asp:Label runat="server" ID="PressureTolerancSliderKeyLabel2" CssClass="FilterLabelShortRight" Text="1.00" />
