Collections ASP.Net

<%@Page Language="c#" debug="true"  %>

  void Page_Load(object source, EventArgs e)
  {
    SortedList mySortedList = new SortedList();
    mySortedList["a"]="aa";
    mySortedList["b"]="bb";
    mySortedList["c"]="cc";
    mySortedList["d"]="dd";
    if (!(Page.IsPostBack))
    {
      foreach (DictionaryEntry Item in mySortedList)
      {
        ListItem newListItem = new ListItem();
        newListItem.Text = Item.Key.ToString();
        newListItem.Value = Item.Value.ToString();
        myDropDownList.Items.Add(newListItem);
      }
    }
  }
  void Click(object source, EventArgs e)
  {
    myLabel.Text = myDropDownList.SelectedItem.Value;
  }


  
    Pick a word from the list:
    
    
    
    Definition: