摘要:
DropdownList绑定的两种方法动态绑定方法一:动态绑定数据库中的字段。SqlConnection conn = UtilitySqlClass.OperateDataBase.ReturnConn();string strSQL = "select * from CompanyType";SqlDataAdapter ada = new SqlDataAdapter(strSQL, conn);DataSet ds = new DataSet();ada.Fill(ds, "CompanyType");DropDownList1.DataSour 阅读全文
摘要:
DropDownList1.Items.Add(new ListItem(dr["status"].ToString(), dr["status_Id"].ToString()));里面的两个参数 都必须是 string类型的,第一个参数是text,第二个参数是value 阅读全文
摘要:
this.DropDownList1.Items.FindByValue(ViewState["hit"].ToString()).Selected = true; 阅读全文