this.DropDownList1.Items.Insert(0, new ListItem("-请选择-", "0"));
或者
DropDownList1.Items.Insert(0,"请选择...");
要想实现droplist的联动效果,要选择aupostback(),最好再配合ajax使用。
this.DropDownList1.Items.Insert(0, new ListItem("-请选择-", "0"));
或者
DropDownList1.Items.Insert(0,"请选择...");
要想实现droplist的联动效果,要选择aupostback(),最好再配合ajax使用。