您的位置首页百科问答 asp.net中怎么清除dropdownlist中的项目 Simone 发布于 2026-03-27 14:04:06 819 阅读 asp.net中怎么清除dropdownlist中的项目的有关信息介绍如下:页面代码 aaa bbb ccc ddd cs 文件代码 protected void Button1_Click(object sender, EventArgs e) { DropDownList1.Items.Clear(); } protected void Button2_Click(object sender, EventArgs e) { DropDownList1.Items.Remove("bbb"); }