private void HienThiDropDow() { DropDownLoaiPhieu.DataSource = abillBUS.ListBill(); DropDownLoaiPhieu.DataValueField = "abtype"; DropDownLoaiPhieu.DataTextField = "abname"; DropDownLoaiPhieu.DataBind(); }
private void HienThiLoaiPhieu() { string ngonngu = Session["languege"].ToString(); DropDownLoaiPhieu.DataSource = abillBUS.ListBill(); DropDownLoaiPhieu.DataValueField = "abtype"; if (ngonngu == "lbl_VN") { DropDownLoaiPhieu.DataTextField = "abname"; } else if (ngonngu == "lbl_TW") { DropDownLoaiPhieu.DataTextField = "abnameTW"; } else if (ngonngu == "lbl_EN") { DropDownLoaiPhieu.DataTextField = "abname"; } DropDownLoaiPhieu.DataBind(); }