你用循环绑定
  System.Collections.ArrayList list = new System.Collections.ArrayList();
            list.Add("apple");
            list.Add("      ");
            list.Add("      ");
            list.Add("      ");
            list.Add("orgage");
            list.Add("      ");
            list.Add("      ");
            for (int i = 0; i < list.Count; i++)
            {
                DropDownList1.Items.Add(list[i].ToString());
            }