voting buttons
Author
Discussion

billb

Original Poster:

3,198 posts

283 months

Tuesday 27th January 2004
quotequote all
wana add a "fun" voting poll to our intranet thats just a simple "what do you think of so and so" with 3 buttons with 3 answers which when u click give you the current votes.

is there any easy way to add this in a copy javascript etc easy kind of way without having to set up databases, forms etc etc? had a quick google but cant really find what i'm after

thanks

_DJ_

5,026 posts

272 months

Tuesday 27th January 2004
quotequote all
Simple answer is no. You need to store the information somewhere. Typically you have a form (which you need to submit your choice to another page) then an ASP page which will record your choice somewhere. You'll then need another page to read back the total of votes. Not a different app to write, but you'll definately need a form, some server side code and somewhere to store the results (could just be a file on the server but could also be a database).

DJ