Asp.Net slider control?

My blog has moved.
You can view this post at the following address:
http://www.osherove.com/blog/2004/2/23/aspnet-slider-control.html
Published Monday, February 23, 2004 10:42 AM by RoyOsherove
Filed under:

Comments

Monday, February 23, 2004 12:23 PM by Jason Mauss

# re: Asp.Net slider control?

Roy - check out the "2k3 Slider" widget at http://www.stedy.com
Tuesday, March 09, 2004 2:54 PM by Memi Lavi

# re: Asp.Net slider control?

Hey Roy.

We've developed a nice slider control for our framework, with client & server events. Unfortunately, I can't share it with you since it's the intellectual property of EDS, but if you would like to buy it, drop me a line and I'll do my best to help you get a good price.
Wednesday, March 10, 2004 5:09 PM by Metodi

# re: Asp.Net slider control?

Memi Lavi,

how to get in touch with you regarding the slider control?
Wednesday, March 10, 2004 5:11 PM by Roy Osherove

# re: Asp.Net slider control?

weblogs.asp.net/memi -
there's a "contact" link there.
Tuesday, April 13, 2004 6:05 PM by Sumeet

# re: Asp.Net slider control?

Guys i want a slider control. If anybody knows how to program one or from where I can buy one then please let me know.
Thanks,
Sumeet
Tuesday, April 20, 2004 6:07 PM by Til

# re: Asp.Net slider control?

I'm trying out a javascript slider using an asp page (from http://www.howtocreate.co.uk/jslibs/). See my sample at http://www.surveyity.com/slide/default.asp.

The java is in http://www.surveyity.com/slide/slider.js

Wednesday, April 21, 2004 11:44 AM by Til

# re: Asp.Net slider control?

Concerning the above slider:

function stopFunction(sliderPosition) {
//do something with the position of the slider
//window.alert( 'The final position is ' + Math.round( 100 * sliderPosition ) + '%' );
document.survey.Q1.value=Math.round( 100000 * sliderPosition);
}

This javascript function saves the value of the slider to Q1


This asp code prints the value of Q1 on the return trip from the server via the submit button.
<%
if Request.Form("Q1")<>"" then
response.write "<h1>Your last response was <font color='Red'><b>" & Request.Form("Q1") & "</b></font></h1>"
end if
%>