I am relatively new to ASP.NET but have some WinForms experience.
Basically I want to use 2 types of slider bar controls:
- Basic sliderbar where the user drags one thumb and I can pull the value from the control.
- A sliderbar with 3 thumbs for minimum, predicted and maximum. The predicted value must stay within the min and max values. I need to able to pull all three values from this control. (something like http://jqueryui.com/slider/#range but with a third thumb in the middle)
Other points to mention, these controls need to be created dynamically as the number of them will depend on values saved in an SQL database. Also, I have created controls that work in WinForms but I doubt I can port these over to be used in ASP.NET?
Has anyone had experience using sliderbars in ASP.NET? Are there FREE packages that can be used to do what I described?
Many Many thanks for any help, support or advice you can provide!!