string username = this.txtUserName.Value.Trim();
string password = this.txtPassword.Text.Trim();
////重构登陆方法
DataTable dt = UsersBLL.Select用户职能部门名称(username, password);
DDL职能部门名称.DataSource = dt;
DDL职能部门名称.DataTextField = "职能部门名称";
DDL职能部门名称.DataValueField = "职能部门名称";
DDL职能部门名称.DataBind();
///第一个选项无法触发事件,添加以下代码可以解决
ListItem item = new ListItem();
item.Text = "--请选择--";
item.Value = "-1";
DDL职能部门名称.Items.Insert(0, item);