protected void btnThem_Click(object sender, EventArgs e) { NhomSach _ns = new NhomSach(); _ns.MaNhom = CreateKey(); _ns.TenNhom = txtTenNhom.Text.Trim(); tbl_ns.Insert(_ns); Response.Redirect("/QuanLyNhomSach/Nhom"); }
private void ThemNhomSach(string ten) { NhomSach _ns = tbl_nhomsach.GetByName(ten); if (_ns == null) { if (ten.Trim() != "") { _ns = new NhomSach(); _ns.MaNhom = QL_Nhom.CreateKey(); _ns.TenNhom = ten; tbl_nhomsach.Insert(_ns); } } }