I have multiple sliders on a page, when I set the AutoPostBack = true and then set the OnValueChanged="sldDistance_onValueChanged" on the control, it will post back fine, but any code that I have in my sldDistance_onValueChanged() method will never get called. It does not matter whether i put the slider control in an update panel or by itself, the server side code never gets reached. Any client side events get called fine. Any thoughts?
I can't even seem to manually hook up to the event:
sldDistance.ValueChanged += new EventHandler(sldDistance_ValueChanged);
that also does not seem to work in my code to subscribe to the event.