摘要: DropDownList.Items的常用方法在最后一项添加:DropDownList.Items.Add("text");orDropDownList.Items.Add(new ListItem("text","value"));在指定的位置添加一项:DropDownList.Items.Insert(index, new ListItem("text","value"));移除指定的项:Dr... 阅读全文
posted @ 2009-08-02 21:24 djune 阅读(716) 评论(0) 推荐(0)