protected void Page_Load(object sender, EventArgs e)
        {
            if (Session["uporabnik"] == null || Session["stanje"] == null)
            {
                Response.Redirect("index.aspx");
            }
            else if ((int)Session["stanje"] != 2)
            {
                Response.Redirect("index.aspx");
            }

            int idz = Baza.DobiZaposlenega((int)Session["uporabnik"]);
            int idp = Baza.DobiPoslovalnico((int)Session["uporabnik"]);
            Dictionary <string, int> dictionary = new Dictionary <string, int>();

            dictionary = Baza.DobiNarocilaZaOdobritev(idp);
            foreach (KeyValuePair <string, int> entry in dictionary)
            {
                //this.DropDownList2.Items.Insert(0, new ListItem(entry.Key, entry.Value.ToString()));
                TableRow tRow = new TableRow();
                this.Table1.Rows.Add(tRow);
                TableCell tCell1 = new TableCell();
                TableCell tCell2 = new TableCell();
                TableCell tCell3 = new TableCell();
                tCell1.Text = entry.Key;
                Button bt = new Button();
                bt.Text   = "Odobri";
                bt.ID     = entry.Value.ToString();
                bt.Click += OnClick;
                Button bt1 = new Button();
                bt1.Text   = "Briši";
                bt1.ID     = "0" + entry.Value.ToString();
                bt1.Click += OnClick;
                tRow.Cells.Add(tCell1);
                tCell2.Controls.Add(bt);
                tRow.Cells.Add(tCell2);
                tCell3.Controls.Add(bt1);
                tRow.Cells.Add(tCell3);
            }
        }