dropdownlist添加请选择

this.DropDownList1.Items.Insert(0, new ListItem("-请选择-", "0"));

或者

DropDownList1.Items.Insert(0,"请选择...");



要想实现droplist的联动效果,要选择aupostback(),最好再配合ajax使用。

你可能感兴趣的:(dropdownlist添加请选择)