protected void cblGenre_Init(object sender, EventArgs e)
{
   // Tworzenie tablicy elementw do dodania.
   string[] Genre = { "Fantastyka", "Powieci", "Komputery", "Historia", "Religia" };
   string[] Code = {"sf", "nvl", "cmp", "his", "rel" };

   for (int i = 0; i < Genre.Length; i++)
   {
      // Dodajemy zarwno waciwo Text jak i Value.
      this.cblGenre.Items.Add(new ListItem(Genre[i], Code[i]));
   }
}
