rajesh pillai
rajesh pillai

Reputation: 8128

Anyone know whether there is a 5-star rating control for asp.net mvc?

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?

Upvotes: 11

Views: 13484

Answers (7)

Amir Chatrbahr
Amir Chatrbahr

Reputation: 2370

This one is my favorite Rating plug-in for JQuery:

http://rateit.codeplex.com/

it comes with good examples: http://www.radioactivethinking.com/rateit/example/example.htm

Upvotes: 2

Raja
Raja

Reputation: 81

I tried looking at the links given as response however was not that happy and I developed my own star rating system here and have wrote an article of how I have done it. Hope this will be helpful

http://www.dotnetfunda.com/articles/show/2828/developing-a-star-rating-in-aspnet-mvc

Thanks

Upvotes: 1

Roger
Roger

Reputation: 1082

I know this is an old post but I like to answer it for everybody who will find this post through search engines.

This article explains how to implement a star rating system for MVC. I have implemented it and it works like a charm.

http://www.codecapers.com/post/Building-a-Star-Rating-System-with-ASPNET-MVC-and-jQuery.aspx

Upvotes: 0

Anthony Shaw
Anthony Shaw

Reputation: 8166

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

Upvotes: 3

rajesh pillai
rajesh pillai

Reputation: 8128

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.

Upvotes: 4

graham.reeds
graham.reeds

Reputation: 16486

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.

Upvotes: 5

Nick Berardi
Nick Berardi

Reputation: 54894

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.

Upvotes: 1

Related Questions