Click here to Skip to main content
15,867,568 members
Articles / Web Development / ASP.NET

Cloud Control for ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.84/5 (38 votes)
4 Jul 2006CPOL4 min read 278.2K   1.8K   184   75
This cloud control displays a list of hyperlinks in varying styles depending on a weight. This is similar to tag clouds in del.icio.us or Flickr.

Introduction

Web sites such as del.icio.us, Technorati, and Flickr, which allow tagging of their content, depict the popularity of tags using a tag cloud. The popular items have larger font sizes. This concept can be applied to any list of items where each item has an associated weight. For example, a list of products can be displayed in a cloud weighed by the cost of a product. Using the ASP.NET server control presented in this article, you can display your own domain specific items as a cloud. The image below shows a sample cloud for articles on Ajaxian.

sample image

Using the Control

This control works only with ASP.NET 2.0. First, you need to add a reference to the control assembly or the control project to your website. In the page you need to use the control, add the following declaration:

ASP.NET
<%@ Register Namespace="VRK.Controls" TagPrefix="vrk" Assembly="VRK.Controls" %>

This will allow you to use the control in the page using the following declaration:

ASP.NET
<vrk:Cloud ID="c1" runat="server" />

Now, you need to add items to the control. Each item will be displayed as a hyperlink on the page. You can supply the following properties for the items you want to add:

  • Text - The text of the hyperlink.
  • Href - The URL where the user will be navigated to when he clicks the hyperlink. If this property is left blank, the control causes a postback and raises the ItemClick event.
  • Title - The tooltip text of the HTML anchor.
  • Weight - The weight determines how the item will be displayed.

You can add the items declaratively, as shown:

XML
<vrk:Cloud ID="c1" runat="server">
<Items>
   <vrk:CloudItem Text="Item1" 
      Href="Default.aspx?tag=Item1" 
      Title="Some title" Weight="4" />
   <vrk:CloudItem Text="Item2" 
      Href="Default.aspx?tag=Item2" 
      Title="Some title" Weight="4" />
</Items>
</vrk:Cloud>

You can also add the items programmatically:

C#
c1.Items.Add(new CloudItem("Item1", 4, 
                           "Default.aspx?tag=Item1", 
                           "Some title"
                           ));

You can also use data binding to add items. First, you need to add a data source to your page. The code example below shows an ObjectDataSource, but you can use any ASP.NET DataSourceControl such as SqlDataSource or AccessDataSource.

ASP.NET
<asp:ObjectDataSource 
   ID="ItemsSource" 
   runat="server" 
   SelectMethod="GetItems" 
   TypeName="CloudTest.ItemsSource" 
  />

You need to indicate to the cloud control that it needs to use the ItemsSource data source control by specifying its DataSourceID.

ASP.NET
<vrk:Cloud ID="c1" runat="server" DataSourceID="ItemsSource" .... />

Once the data source is specified, you will need to indicate how the items should be populated from the data source. The following control properties can be used to supply the information:

  • DataTextField - the name of the data field that is bound to the Text property of an item.
  • DataTextFormatString - the format string for the Text property. {0} in the string is replaced with the value of the field from the data source.
  • DataHrefField - the data field which is bound to the Href property of an item.
  • DataHrefFormatString - the format string to format the Href property value.
  • DataTitleField - the data field which is bound to the Title property of an item.
  • DataTitleFormatString - the format string for the title (tooltip) of an item.
  • DataWeightField - the field in the Data Source from where the weight of an item is to be obtained.

The control then normalizes the weight of all the items so that they fit in the range 1 to 7. You can control the display of the normalized items using the optional ItemCssClassPrefix property. If you use the ItemCssClassPrefix property, you need to add seven different CSS classes to your HTML page. For example, if you specify the property value to be "Item", you need to specify the CSS classes Item1, Item2... Item7. If you don't specify the ItemCssClassPrefix, the font size CSS attribute is set depending on the weight, as follows:

Normalized WeightFont-size
1xx-small
2x-small
3small
4medium
5large
6x-large
7xx-large

Now, let's examine how the control works.

How the Control Works?

The main logic is to convert the distribution of weights into a integral range between 1 and 7. After struggling with statistics for some time, I figured out the following algorithm for normalizing the weights:

  1. Compute the mean and the standard deviation (σ) of the weights. This is done using the functions from the Statistics class similar to the Math class.
  2. C#
    private IEnumerable<double> ItemWeights
    {
      get
      {
        foreach (CloudItem item in this.Items)
        {
          yield return item.Weight;
        }
      }
    }
    
    ...
    
    double mean; 
    double stdDev = Statistics.StdDev(ItemWeights, out mean);

    The StdDev function takes an IEnumerable<double> parameter which is supplied by the ItemWeights method.

  3. The weight factor is calculated according to the following formula:
  4. factor = (weight - mean)/(stddev)
  5. The normalized weights are obtained based on the following table:
  6. Normalized WeightCondition
    1factor <= -2*stddev
    2-2*stddev < factor <= -1*stddev
    3-1*stddev < factor <= -0.5*stddev
    4-0.5*stddev < factor < 0.5*stddev
    50.5*stddev <= factor < 1*stddev
    61*stddev < = factor < 2*stddev
    7factor >= 2 * stddev

Once the normalized weights are obtained, it is easy to set the font sizes and the classes.

C#
foreach (CloudItem item in Items)
{
  HtmlAnchor a = new HtmlAnchor();
  a.HRef = String.IsNullOrEmpty(item.Href) ?
  this.Page.ClientScript.GetPostBackClientHyperlink(this, index.ToString()) :
                   item.Href;
  a.InnerText = item.Text;
  a.Title = item.Title;
  int normalWeight = NormalizeWeight(item.Weight, mean, stdDev);
  if (hasCssClassPrefix)
  {
    a.Attributes["class"] = 
      this.ItemCssClassPrefix + normalWeight.ToString();
  }
  else
  {
    a.Style.Add(HtmlTextWriterStyle.FontSize, _fontSizes[normalWeight - 1]);
  }
  this.Controls.Add(a);
  this.Controls.Add(new LiteralControl(" "));
  index++;
}

The method seems to work reasonably well in most of the situations. Any suggestions to improve it further are welcome.

History

  • July 4, 2006 - First version.

License

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


Written By
Architect
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNice! Pin
Sandeep Mewara27-Mar-10 5:03
mveSandeep Mewara27-Mar-10 5:03 
Questionkeywords are shown in one line Pin
manish_hwd11-Mar-10 2:23
manish_hwd11-Mar-10 2:23 
Generalit's great Pin
ernest_elias13-Jan-10 2:16
ernest_elias13-Jan-10 2:16 
GeneralSome statistic Pin
maitola7928-Jul-09 6:28
maitola7928-Jul-09 6:28 
NewsSource code available online Pin
shookon30-May-09 16:33
shookon30-May-09 16:33 
Generalselected tag Pin
sadeghhp7-Mar-09 22:47
sadeghhp7-Mar-09 22:47 
GeneralRe: selected tag Pin
sadeghhp12-Mar-09 21:55
sadeghhp12-Mar-09 21:55 
GeneralVisual Error Pin
sadeghhp30-Jan-09 22:55
sadeghhp30-Jan-09 22:55 
GeneralRe: Visual Error Pin
Sam Shiles27-Feb-09 2:40
Sam Shiles27-Feb-09 2:40 
QuestionOnItemClick Pin
Member 390410926-Sep-08 2:31
Member 390410926-Sep-08 2:31 
GeneralFont Size variation Pin
Vijay Karla25-Jun-08 19:40
Vijay Karla25-Jun-08 19:40 
GeneralCentering the cloud Pin
musoswire18-Jun-08 4:24
musoswire18-Jun-08 4:24 
GeneralThe data in the Tag cloud will be lost after a post back.. Pin
miltash27-May-08 0:44
miltash27-May-08 0:44 
QuestionRe: The data in the Tag cloud will be lost after a post back.. Pin
asamite30-Sep-09 14:57
asamite30-Sep-09 14:57 
GeneralRe: The data in the Tag cloud will be lost after a post back.. Pin
DavidLieu2-Dec-09 12:03
DavidLieu2-Dec-09 12:03 
AnswerItemClick Pin
Adrian_Star28-Apr-08 7:01
Adrian_Star28-Apr-08 7:01 
GeneralDataSource Pin
111qwe22221-Apr-08 1:11
111qwe22221-Apr-08 1:11 
GeneralOverflow Pin
bobbo052115-Apr-08 11:57
bobbo052115-Apr-08 11:57 
GeneralRe: Overflow Pin
utkuozturk7-May-08 10:15
utkuozturk7-May-08 10:15 
GeneralRe: Overflow Pin
SiB5726-Sep-08 5:28
SiB5726-Sep-08 5:28 
GeneralColors for the Tag cloud Pin
mavericksthrive14-Apr-08 20:20
mavericksthrive14-Apr-08 20:20 
GeneralRe: Colors for the Tag cloud Pin
Sam Shiles27-Feb-09 2:37
Sam Shiles27-Feb-09 2:37 
GeneralRe: Colors for the Tag cloud Pin
Steve Pieczko26-May-11 12:45
Steve Pieczko26-May-11 12:45 
GeneralResizing Tag Cloud PinPopular
mallyajiggs11-Apr-08 6:10
mallyajiggs11-Apr-08 6:10 
GeneralRe: Resizing Tag Cloud Pin
Everton Molina10-Jun-08 10:42
Everton Molina10-Jun-08 10:42 

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

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