tags:

views:

952

answers:

4

I require a star rating control (which allows partial rating like 4.5) for my application built on asp.net mvc.

Any pointers in this direction will be helpful?

+1  A: 

There are a couple in the jQuery plug-in list that will be able to do what you require. However there is no specific control for MVC yet.

Nick Berardi
Thanks. i'll check this.
rajesh pillai
+3  A: 

Rogie, over at Komodomedia, has spent far too long on this topic writing 3 articles on the topic.

Just in case anyone got lost in the link-soup this is the latest.

It's not MVC specific, but it is cross browser and allows you to get the value back via postback or ajax.

graham.reeds
Thanks, the links are definitely worth looking at.
rajesh pillai
+4  A: 

Meanwhile I found this link with example in asp.net. http://beckelman.net/post/2008/08/30/Survey-Using-jQuery-Star-Rating-Widget.aspx

This is pretty helpful.

Thanks everyone for the help.

rajesh pillai
A: 

I know its not a control, but I found it very easy to implement.

I just implemented this on one of my sites using MVC and it worked beautifully.

http://www.mikesdotnetting.com/Article/114/jQuery-Star-Rating-with-ASP.NET-MVC

Anthony Shaw