Click here to Skip to main content
Licence CPOL
First Posted 29 Jan 2007
Views 160,604
Downloads 5,714
Bookmarked 109 times

AJAX ASP.NET Rating Control

By | 4 Jun 2007 | Article
An article on how to use the Rating control from the AJAX Control Toolkit and create CSS and images to display it as a gauge or thermometer.

Sample Image - AjaxRating.png

Introduction

This is an article on how to use the Rating control from the AJAX Control Toolkit, and create CSS and images to display it as a gauge or thermometer. It is useful for those who need to show ratings in ASP.NET more graphically.

Background

Once there was a demand on creating a thermometer on some AJAX ASP.NET site. Simple configuration of parameter ranges and different graphics were required.

Setting up

Pre-requisities to use the Rating control and to create the gauge/thermometer:

  • Windows (XP or newer)
  • Visual Studio (2005 or newer)
  • ASP.NET AJAX-Enabled Web Site (Microsoft ASP.NET AJAX v1.0)
  • AJAX Control Toolkit (v1.0.10123.0)
  • Intermediate knowledge of CSS
  • Knowledge of how to draw simple graphics

Using the code

The first thing you need to do is to add the Rating control to your aspx page. The page should look like this:

<%@ Page Language="VB" AutoEventWireup="true" 
                       CodeFile="Default.aspx.vb" Inherits="_Default" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 
                         "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <asp:ScriptManager ID="ScriptManager1" runat="server" />
            <div>
                <cc1:Rating ID="Rating1" runat="server">
                </cc1:Rating>
            </div>
        </form>
    </body>
</html>

You need to set up the basic attributes of the Rating control. You can start with the attributes described at the control's web site.

    <ajaxToolkit:Rating runat="server" ID="Rating1"
        MaxRating="5"
        CurrentRating="2"
        CssClass="ratingStar"
        StarCssClass="ratingItem"
        WaitingStarCssClass="Saved"
        FilledStarCssClass="Filled"
        EmptyStarCssClass="Empty"
        >
    </ajaxToolkit:Rating>

The control provides a selection of five stars; therefore, it is possible to select a rating from 1 to 5. There are three basic images to display the control's state, recognized by CSS class names:

  • Empty - when the value is not selected.
  • Filled - when the value is selected.
  • Saved - when the value is being saved via an async. postback.

Also, there are two more styles:

  • ratingStar - specifies the control, this Rating is of type "star".
  • ratingItem - specifies each "star" of the rating.

The control renders like this: AjaxRating_stars.gif, 1 kB

But what if we want to use another graphics? What if we want to have a ratio from 1 to 10? What if we want to be able to select even a zero or "not-selected" value?

Simply, the Rating control allows that. You just write some CSS and paint some graphics.

The main idea is:

  • Have some pretty graphics on the background.
  • Use transparent boxes for Filled "stars". These boxes will reveal the background graphics.
  • Use filled boxes for Empty "stars". These boxes will cover the background.
  • Position the Rating control in CSS with padding to have "stars" placed over the required area of the background.
  • Change the MaxRating value. Add one to the value if you require a "zero" value.
  • For CSS attributes - change only the value of the CssClass attribute, leave the other CSS attributes untouched.

The sample Rating control's properties have these value:

MaxRating="21"
CssClass="ratingThermometer"
StarCssClass="ratingItem"
WaitingStarCssClass="Saved"
FilledStarCssClass="Filled"
EmptyStarCssClass="Empty"

... and shows a thermometer with values from 0 to 10 with a 0.5 step. Hence, MaxRating is computed as (10 / 0.5 ) + 1.

The modified control renders like this: AjaxRating_thermometer.gif, 2 kB

Finally, you need to compute the value that corresponds with your graphics, according to the control's CurrentValue, MaxRating, and the desired MinimumRange and MaximumRange:

    Public Shared Function EvaluateRating(ByVal CurrentValue As Integer, _
                      ByVal MaxRating As Integer, _
                      ByVal MinimumRange As Integer, _
                      ByVal MaximumRange As Integer) As Double

        ' If MinimumRange = 0 than compute value differently otherwise not
        Dim FromZero As Integer = IIf(MinimumRange = 0, 1, 0)
        Dim Delta As Double = (MaximumRange - MinimumRange) / (MaxRating - 1)
        Dim Result As Double = Delta * CurrentValue - Delta * FromZero
        
        Return result

    End Function

Points of interest

  1. You don't need to use the cc1 prefix and have the assembly registered unnecessarily on every page. You can register the AjaxControlToolkit assembly once in the Web.config. Add the following content into the configuration/system.web/pages/controls node:
    <add tagPrefix="ajaxToolkit" namespace="AjaxControlToolkit" 
                                 assembly="AjaxControlToolkit"/>

    Then, you can replace the cc1 prefix with a more readable ajaxToolkit prefix and remove the Register directive completely from any aspx page. The source code looks much better than before.

  2. There is currently a bug in the Rating control (AJAX Control Toolkit v1.0.10123.0). When you change the view from Source to Design, an error shows up: "value" could not be set on property 'CurrentRating', if value is >5. Nevertheless, everything works.
  3. And, you can surely write your code in C# if you prefer so. The idea of creating and evaluating doesn't change.

History

  • 2007-01-30: First version posted.
  • 2007-06-04: Text updated.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Miroslav Sommer

Software Developer (Senior)

United Kingdom United Kingdom

Member

E-learning specialist. ASP.NET, PHP, AJAX and things like that Smile | :)

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberAnil.suthar5282:32 2 Jun '11  
GeneralMy vote of 5 PinmemberMangat Phogat7:08 31 May '11  
GeneralCannot change the rate, please help me! PinmemberMember 795886812:17 28 May '11  
GeneralRe: Cannot change the rate, please help me! Pinmemberph19942:18 28 Nov '11  
GeneralMy vote of 5 Pinmemberatul kashid23:54 25 Mar '11  
GeneralMy vote of 3 PinmemberManoj040522:28 19 Jan '11  
GeneralMy vote of 5 PinmemberManoj040522:09 19 Jan '11  
GeneralMy vote of 5 PinmemberManoj040522:09 19 Jan '11  
GeneralMy vote of 5 PinmvpSandeep Mewara19:32 18 Jan '11  
GeneralMy vote of 1 Pinmemberckollias3:45 20 Dec '10  
Generalgood Pinmembertiger549105:36 27 May '10  
Generalaverage rating Pinmembersukeshtech0:24 26 Oct '09  
GeneralAverage rating PinmemberMember 310080423:17 1 Oct '09  
QuestionAjaxControlToolkit rating control in a datalist? Pinmemberneetesh12323:56 29 Sep '09  
Questionhow to set rating star's value from database value Pinmemberomkar mhaiskar2:34 28 May '09  
Generalproblem in Viewing image star in rating Pinmemberxccx2:30 7 Jan '09  
GeneralFor Displaying Message on Rating PinmemberDotNetGuts16:55 4 Dec '08  
GeneralDisplay - div Pinmembermgp2210:02 29 May '08  
GeneralRe: Display - div PinmemberMiroslav Sommer1:40 31 May '08  
GeneralRe: Display - div Pinmembermgp226:57 31 May '08  
GeneralRe: Display - div Pinmembermgp227:41 31 May '08  
GeneralRe: Display - div [modified] PinmemberMiroslav Sommer2:02 1 Jun '08  
Hi,
 
I see what you want to achieve and I know how to do it. For the usage above floats are bad; put the rating absolute-positioned inside of the "inline" container. The idea behind using DIVs instead of SPANs is that SPANs should only contain inline content, not block content (e.g. other divs) but DIVs can. So you should not wrap rating control in SPAN container.
 
"The rating is <div class="rating_container"><ajaxtoolkit:rating ...="" cssclass="ratingStar" /></div>, which means that..."
 
CSS:
.rating_container 
{
  display: inline;
  padding-right: 68px;
}
.ratingStar
{
  white-space:nowrap;
  display: inline;
  padding-top: 4px;
  position: absolute;
}
 
Cheers
Miroslav
 
modified on Sunday, June 1, 2008 7:01 PM

GeneralRe: Display - div Pinmembermgp226:41 1 Jun '08  
GeneralHelp Pinmembermgp2210:00 29 May '08  
GeneralRe: Help PinmemberMiroslav Sommer1:30 31 May '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 4 Jun 2007
Article Copyright 2007 by Miroslav Sommer
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid