摘要:
protected void grid1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { string s2 = "select subDivisionName from Tbh_SubDivsionMaster"; SqlDataAdapter ada = new SqlDataAdapter(s2, con); DataSet ds = new DataSet(); ada.Fill(ds); DropDown 阅读全文