Esempio n. 1
0
        protected void grvDSLoaiVideo_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            if (e.CommandName == "ChonLVD")
            {
                string maLoaiVideo = e.CommandArgument.ToString();


                LoaiVideoDTO lvd = LoaiVideoBUS.LayThongTinLoaiVideo(maLoaiVideo);
                if (lvd != null)
                {
                    txtMaLoai.Text       = lvd.MaLoaiVideo;
                    txtTenLoai.Text      = lvd.TenLoaiVideo;
                    chkTrangThai.Checked = lvd.TrangThai;
                    GiaoDienThem(false);
                }
            }

            if (e.CommandName == "XoaLVD")
            {
                string maLoaiVideo = e.CommandArgument.ToString();

                if (LoaiVideoBUS.XoaLoaiVideo(maLoaiVideo))
                {
                    XoaForm();
                    LoadDSLoaiVideo();
                    Response.Write("<script>alert('Xóa loại video thành công');</script>");
                }
                else
                {
                    Response.Write("<script>alert('Xóa Loại Video Thất Bại');</script>");
                }
            }
        }
Esempio n. 2
0
        protected void btnThem_Click(object sender, EventArgs e)
        {
            LoaiVideoDTO lvd = new LoaiVideoDTO();

            lvd.MaLoaiVideo  = txtMaLoai.Text;
            lvd.TenLoaiVideo = txtTenLoai.Text;
            lvd.TrangThai    = chkTrangThai.Checked;

            if (LoaiVideoBUS.ThemLoaiVideo(lvd))
            {
                XoaForm();
                LoadDSLoaiVideo();
                GiaoDienThem(true);
                Response.Write("<script>alert('Thêm loại video thành công');</script>");
            }
            else
            {
                Response.Write("<script>alert('Thêm loại video thất bại');</script>");
            }
        }
Esempio n. 3
0
        protected void btnSua_Click(object sender, EventArgs e)
        {
            LoaiVideoDTO lvd = LoaiVideoBUS.LayThongTinLoaiVideo(txtMaLoai.Text);

            lvd.MaLoaiVideo = txtMaLoai.Text;

            if (txtMaLoai.Text != "")
            {
                lvd.TenLoaiVideo = txtTenLoai.Text;
            }
            lvd.TrangThai = chkTrangThai.Checked;

            if (LoaiVideoBUS.SuaLoaiVideo(lvd))
            {
                XoaForm();
                LoadDSLoaiVideo();
                GiaoDienThem(true);
                Response.Write("<script>alert('Sửa loại video thành công');</script>");
            }
            else
            {
                Response.Write("<script>alert('Sửa loại video thất bại');</script>");
            }
        }
Esempio n. 4
0
 protected void LoadDSLoaiVideo()
 {
     grvDSLoaiVideo.DataSource = LoaiVideoBUS.LayDSLoaiVideo();
     grvDSLoaiVideo.DataBind();
 }