asp.net中DropDownList添加“请选择”提示
来源:未知 责任编辑:责任编辑 发表时间:2013-12-18 11:35 点击:次
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Bind();
}
this.drpDownDepartment.Items.Insert(0, new ListItem("请选择部门", "0"));
}
在调用的时候,需要做一个判断:
if (this.drpDownDepartment.SelectedItem.Text != "请选择部门......")
{
StaffBLL.UpdateStaffDepIDByID(this.lblNum.Text, departmentID);
}
摘自 徐越的专栏
{
if (!IsPostBack)
{
Bind();
}
this.drpDownDepartment.Items.Insert(0, new ListItem("请选择部门", "0"));
}
在调用的时候,需要做一个判断:
if (this.drpDownDepartment.SelectedItem.Text != "请选择部门......")
{
StaffBLL.UpdateStaffDepIDByID(this.lblNum.Text, departmentID);
}
摘自 徐越的专栏
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>