//得到其中一个表的所有项,其中water_type返回的数据中有water_type和charge_standard_id
GridView1.DataSource = water_typeBLL.selectAll();
GridView1.DataBind();DataTable dt = water_typeBLL.selectAll();
//遍历water_typt表中所有的行
for(int i=0;i<dt.Rows.Count;i++){
//找到每行的label
Label lbl = GridView1.Rows[i].FindControl("lblchargeid") as Label;
//通过water_type中的数据段Charge_standard_id,通过BLL方法,返回charge_standard表中相应的行
DataTable labdt=charge_standardBLL.selectAll(int.Parse( dt.Rows[i]["Charge_standard_id"].ToString()));
//通过返回的datatable绑定好text
lbl.Text = labdt.Rows[0][1].ToString();}