donde
donde

Reputation: 51

How do I create a star-rating system?

Amazon has a star rating system. Other sites use smiley faces that change color when you mouse over them. Does anyone know of an API I can get or a simple way to put this together?

This is an ASP.NET 2010 app.

Upvotes: 5

Views: 6421

Answers (5)

Nash
Nash

Reputation: 531

There are many Star Rating available as controls. From microsoft or codeProject

or css Jquery etc. try Binging/googling it :-)

Upvotes: 2

Dan Diplo
Dan Diplo

Reputation: 25339

Presuming it is ASP.NET web-forms you could try using the Rating control in the Ajax Control Tookit. Or you could check out Building a Simple Rating Control for ASP.NET 2.0 tutorial which guides you through all the steps. If you'd rather go the jQuery root then there are plugins to do this, though the back-end data capture and storage would be a bit more tricky in web-forms.

Upvotes: 3

Ray
Ray

Reputation: 21905

Telerik has a nice one, if you are looking for commercial software (as opposed to free stuff)

Upvotes: 1

Andy Lin
Andy Lin

Reputation: 545

i believe you need to look for javascript to solve this...

you can check:

http://speckyboy.com/2010/04/21/15-javascript-and-plugins-and-tutorials-for-adding-ratings/

Upvotes: 0

Related Questions