2

How can I implement a voting system (UP/DOWN) or (THUMP UP/DOWN) like StackOverFlow in .NET ? I found PHP codes but I want something that works in .NET environment. I don't care about security issues like multi votes and such restrictions at this stage.

Morano88
  • 2,047
  • 4
  • 25
  • 44
  • are you looking for a silverlight implementation? you have it marked in your tags. – Glennular Apr 19 '10 at 17:37
  • possible duplicate of [How to create stackoverflow's post voting like jquery/ajax function?](http://stackoverflow.com/questions/2659904/how-to-create-stackoverflows-post-voting-like-jquery-ajax-function) – outis Apr 26 '12 at 04:06

2 Answers2

1

Why not simply use the framework as it has been published, I believe.

Paulo Santos
  • 11,285
  • 4
  • 39
  • 65
0

I created a simple voting application similar to stackoverflow.com using angularjs, php and mysql with code to download.

You just need to change the 2 php files into ASP.NET files which gets and updates the voteCount.

Everthing else will be intact. Creating the voting app using AngularJS is much easier and flexible.

Swadesh
  • 651
  • 2
  • 8
  • 22