protected void FillPersonList()
    {
        string[] people = sc.GetPeople();
        UserDropDownList.DataSource = people;
        UserDropDownList.DataBind();
        ListItem item = new ListItem("Choose User");

        UserDropDownList.Items.Insert(0, item);
    }