Ejemplo n.º 1
0
        protected void txtsave_Click(object sender, EventArgs e)
        {
            //string masv = txtmasv.Text;
            //string hoten = txthoten.Text;
            //string ngaysinh = txtngaysinh.Text;
            //bool gioitinh = bool.Parse(DropDownList3.SelectedValue);
            //string quequan = txtquequan.Text;
            //string lop = txtmalop.Text;
            //string tenchutro = txttenchutro.Text;
            //string sdt = txtsdt.Text;
            //string diachi = txtdiachi.Text;
            //string ngayden = txtngayden.Text;
            //string ngaydi = txtngaydi.Text;
            //Sinhvien sv = new Sinhvien(masv, hoten, ngaysinh, gioitinh, quequan, tenchutro, sdt, diachi, ngayden, ngaydi, lop);
            SinhVienDAO svdao = new SinhVienDAO();

            if (svdao.CheckUser(txtmasv.Text))
            {
                lbthongbao.Text = "Tai Khoan Ton Tai";
            }
            else
            {
                svdao.Insert(GetSinhvien());
                lbthongbao.Text = "Luu Thanh Cong";
                LoadGridview();
            }
        }
Ejemplo n.º 2
0
        public void LoadGridview()
        {
            SinhVienDAO sv = new SinhVienDAO();

            drkhoa.DataSource     = sv.Getdata("SELECT MaKhoa,TenKhoa FROM Khoa");
            drkhoa.DataTextField  = "TenKhoa";
            drkhoa.DataValueField = "MaKhoa";
            drkhoa.DataBind();
            GridView1.DataSource = sv.Getdata("SELECT  MaSV,HoTen,NgaySinh,GioiTinh,TenKhoa,Lop,TenChuTro,SDT,DiaChi,NgayDen,NgayDi,TenKhoa FROM SinhVien,Khoa");
            GridView1.DataBind();
        }
Ejemplo n.º 3
0
        protected void update_Click(object sender, EventArgs e)
        {
            SinhVienDAO svdao = new SinhVienDAO();

            if (svdao.Update(txtmasv.Text, GetSinhvien()))
            {
                lbthongbao.Text = "Cập Nhật Thành Công";
                LoadGridview();
            }
            else
            {
                lbthongbao.Text = "Có Lỗi Xảy Ra";
            }
        }
Ejemplo n.º 4
0
        protected void find_Click(object sender, EventArgs e)
        {
            SinhVienDAO svdao = new SinhVienDAO();

            if (!svdao.CheckUser(txttim.Text.Trim()))
            {
                lbthongbao.Text = "Không tìm thấy";
            }
            else
            {
                GridView1.DataSource = svdao.Getdata("SELECT  MaSV,HoTen,NgaySinh,GioiTinh,TenKhoa,Lop,TenChuTro,SDT,DiaChi,NgayDen,NgayDi,TenKhoa FROM SinhVien,Khoa WHERE MaSV='" + txttim.Text + "' ");
                GridView1.DataBind();
                lbthongbao.Text = "";
            }
        }
Ejemplo n.º 5
0
        protected void delete_Click(object sender, EventArgs e)
        {
            string      username = txtmasv.Text;
            SinhVienDAO svdao    = new SinhVienDAO();

            if (svdao.Delete(username))
            {
                lbthongbao.Text = "Xóa Thành Công";
                LoadGridview();
            }
            else
            {
                lbthongbao.Text = "Có Lỗi Xảy Ra";
            }
        }
Ejemplo n.º 6
0
        protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            string      masv  = GridView1.Rows[e.RowIndex].Cells[0].Text;
            SinhVienDAO svdao = new SinhVienDAO();

            if (svdao.Delete(masv))
            {
                lbthongbao.Text = "Xóa Thành Công";
                LoadGridview();
            }
            else
            {
                lbthongbao.Text = "Có Lỗi Xảy Ra";
            }
            LoadGridview();
        }
Ejemplo n.º 7
0
        protected void txtLogin_Click(object sender, EventArgs e)
        {
            SinhVienDAO svdao = new SinhVienDAO();

            if (txtUser.Text == "" || txtPass.Text == "")
            {
                MessageBox.Show("Vui lòng nạp đủ thông tin!");
            }
            else
            {
                if (svdao.CheckLogin(txtUser.Text, txtPass.Text))
                {
                    Response.Redirect("quanli");
                }
                else
                {
                    MessageBox.Show("Tên tài khoản hoặc mật khẩu không đúng!");
                }
            }
        }