Esempio n. 1
0
 public ActionResult LienHe(LIENHE lh, FormCollection coll)
 {
     data.LIENHEs.InsertOnSubmit(lh);
     data.SubmitChanges();
     ViewBag.ThongBao = "OkCatStore đã nhận được thông tin của bạn. Chúng tôi sẽ phản hồi trong thời gian sớm nhất.";
     return(View());
 }
        public ActionResult Lienhe(FormCollection collection, LIENHE lh)
        {
            //Gán giá trị liên hệ nhập liệu cho các biến
            var hoten   = collection["text"];
            var email   = collection["email"];
            var noidung = collection["texta"];

            if (String.IsNullOrEmpty(hoten))
            {
                ViewData["Loi1"] = "Họ tên khách hàng không được để trống";
            }
            else if (String.IsNullOrEmpty(email))
            {
                ViewData["Loi2"] = "Email không được để trống";
            }
            else if (String.IsNullOrEmpty(noidung))
            {
                ViewData["Loi3"] = "Nội dung không được để trống";
            }
            else
            {
                //Gán giá trị cho đối tượng được tạo mới
                lh.TenKH = hoten;
                lh.Email = email;
                lh.Mota  = noidung;
                db.LIENHEs.InsertOnSubmit(lh);
                db.SubmitChanges();
                return(RedirectToAction("Lienhe"));
            }
            return(this.Lienhe());
        }
Esempio n. 3
0
        public ActionResult DeleteConfirmed(int id)
        {
            LIENHE lIENHE = db.LIENHEs.Find(id);

            db.LIENHEs.Remove(lIENHE);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
Esempio n. 4
0
        public int ThayDoiLienHe(LIENHE model)
        {
            var lien = db.LIENHEs.Find(model.IDLIENHE);

            lien.TRANGTHAI = model.TRANGTHAI;
            db.SaveChanges();
            return(model.IDLIENHE);
        }
 public ActionResult CONTACTEDIT([Bind(Include = "ID,TUADE,HOTLINE,ADDRESSS,PHONE,FAX,WEB,EMAIL,TUADECHANTRANG")] LIENHE cONTACT)
 {
     if (ModelState.IsValid)
     {
         db.Entry(cONTACT).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("CONTACTVIEW"));
     }
     return(View(cONTACT));
 }
Esempio n. 6
0
        public ActionResult Create([Bind(Include = "IDLIENHE,DONVI,TIEUDE,NOIDUNG")] LIENHE lIENHE)
        {
            if (ModelState.IsValid)
            {
                db.LIENHEs.Add(lIENHE);
                db.SaveChanges();
                return(RedirectToAction("Index", "Home"));
            }

            return(View(lIENHE));
        }
        public ActionResult Xoalienhe(int id)
        {
            //Lay ra doi tuong sach can xoa theo ma
            LIENHE lienhe = db.LIENHEs.SingleOrDefault(n => n.MaLH == id);

            ViewBag.MaLH = lienhe.MaLH;
            if (lienhe == null)
            {
                Response.StatusCode = 404;
                return(null);
            }
            return(View(lienhe));
        }
Esempio n. 8
0
        // GET: Admin/LIENHEs/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            LIENHE lIENHE = db.LIENHEs.Find(id);

            if (lIENHE == null)
            {
                return(HttpNotFound());
            }
            return(View(lIENHE));
        }
        public ActionResult DeleteConfirmed(int id)
        {
            ViewBag.SoNguoiTruyCap     = HttpContext.Application["SoNguoiTruyCap"].ToString();    //Số lượng người truy cập từ application đã được tạo
            ViewBag.SoLuongNguoiOnline = HttpContext.Application["SoNguoiDangOnline"].ToString(); //Lấy số lượng người đang truy cập
            ViewBag.TongDoanhThu       = ThongKeTongDoanhThu();                                   //Thống kê tổng doanh thu
            ViewBag.TongDDH            = ThongKeDonHang();                                        //Thống kê dơn hàng
            ViewBag.TongThanhVien      = ThongKeThanhVien();                                      //Thống kê thành viên

            LIENHE lienHe = db.LIENHEs.Find(id);

            db.LIENHEs.Remove(lienHe);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
        // GET: CONTACTs/Edit/5
        public ActionResult CONTACTEDIT(string id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            LIENHE cONTACT = db.LIENHEs.Find(id);

            if (cONTACT == null)
            {
                return(HttpNotFound());
            }
            return(View(cONTACT));
        }
 public ActionResult Edit([Bind(Include = "Id,ThongTin,TrangThai,HoTen,DienThoai,DiaChi,Email,YeuCau")] LIENHE lienHe)
 {
     ViewBag.SoNguoiTruyCap     = HttpContext.Application["SoNguoiTruyCap"].ToString();    //Số lượng người truy cập từ application đã được tạo
     ViewBag.SoLuongNguoiOnline = HttpContext.Application["SoNguoiDangOnline"].ToString(); //Lấy số lượng người đang truy cập
     ViewBag.TongDoanhThu       = ThongKeTongDoanhThu();                                   //Thống kê tổng doanh thu
     ViewBag.TongDDH            = ThongKeDonHang();                                        //Thống kê dơn hàng
     ViewBag.TongThanhVien      = ThongKeThanhVien();                                      //Thống kê thành viên
     if (ModelState.IsValid)
     {
         db.Entry(lienHe).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(lienHe));
 }
Esempio n. 12
0
        public ActionResult Xacnhanxoalienhe(int id)
        {
            //Lay ra doi tuong sach can xoa theo ma
            LIENHE lienhe = db.LIENHEs.SingleOrDefault(n => n.MaLH == id);

            ViewBag.MaLH = lienhe.MaLH;
            if (lienhe == null)
            {
                Response.StatusCode = 404;
                return(null);
            }
            db.LIENHEs.DeleteOnSubmit(lienhe);
            db.SubmitChanges();
            return(RedirectToAction("Lienhe"));
        }
Esempio n. 13
0
 public ActionResult Index(LIENHE fb)
 {
     if (ModelState.IsValid)
     {
         fb.DateCreate = DateTime.Now;
         fb.Status     = 0;
         dao.ThemLienHe(fb);
         ViewBag._Scripts = "toastr.success('Gửi liên hệ thành công', 'Thông báo', { timeOut: 5000 });$('.big-text').val('');";
         fb = new LIENHE();
         return(View(fb));
     }
     else
     {
         return(View());
     }
 }
Esempio n. 14
0
        public ActionResult LienHe(FormCollection colection, LIENHE lh)
        {
            var hoten     = colection["HOTEN"];
            var dienthoai = colection["DIENTHOAI"];
            var diachi    = colection["DIACHI"];
            var email     = colection["EMAIL"];
            var yeucau    = colection["YEUCAU"];

            lh.HOTEN     = hoten;
            lh.DIENTHOAI = dienthoai;
            lh.DIACHI    = diachi;
            lh.EMAIL     = email;
            lh.YEUCAU    = yeucau;
            db.LIENHEs.Add(lh);
            db.SaveChanges();
            return(View(lh));
        }
Esempio n. 15
0
        public ActionResult Lienhe(FormCollection collection, LIENHE lh)
        {
            var hoten     = collection["HoTen"];
            var email     = collection["Email"];
            var dienthoai = collection["DienthoaiKH"];
            var phanhoi   = collection["Mess"];

            lh.HoTen       = hoten;
            lh.Email       = email;
            lh.DienthoaiKH = dienthoai;
            lh.Mess        = phanhoi;
            data.LIENHEs.InsertOnSubmit(lh);
            data.SubmitChanges();



            return(this.Lienhe());
        }
        // GET: Admin/LienHes/Edit/5
        public ActionResult Edit(int?id)
        {
            ViewBag.SoNguoiTruyCap     = HttpContext.Application["SoNguoiTruyCap"].ToString();    //Số lượng người truy cập từ application đã được tạo
            ViewBag.SoLuongNguoiOnline = HttpContext.Application["SoNguoiDangOnline"].ToString(); //Lấy số lượng người đang truy cập
            ViewBag.TongDoanhThu       = ThongKeTongDoanhThu();                                   //Thống kê tổng doanh thu
            ViewBag.TongDDH            = ThongKeDonHang();                                        //Thống kê dơn hàng
            ViewBag.TongThanhVien      = ThongKeThanhVien();                                      //Thống kê thành viên
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            LIENHE lienHe = db.LIENHEs.Find(id);

            if (lienHe == null)
            {
                return(HttpNotFound());
            }
            return(View(lienHe));
        }
 public ActionResult Index(LIENHE lienhe)
 {
     //ModelState.IsValid cho biết nếu bất kỳ lỗi mô hình đã được thêm vào ModelState.
     if (ModelState.IsValid)
     {
         //Lưu lời nhắn
         LIENHE lh = new LIENHE();
         lh.Ten       = lienhe.Ten;
         lh.SDT       = lienhe.SDT;
         lh.Email     = lienhe.Email;
         lh.NoiDung   = lienhe.NoiDung;
         lh.NgayLH    = DateTime.Now;
         lh.TrangThai = false;
         db.LIENHEs.Add(lh);
         db.SaveChanges();
         ViewBag.suscess = "Gửi lời nhắn thành công";
     }
     return(View());
 }
Esempio n. 18
0
 public ActionResult Create(LIENHE model, FormCollection collection)
 {
     model.TRANGTHAI    = false;
     model.NGAYGUIYKIEN = DateTime.Now;
     if (ModelState.IsValid)
     {
         var dao = new LienHeDao().ThemLienHe(model);
         if (dao)
         {
             return(RedirectToAction("Index", "TrangChu"));
         }
         else
         {
             return(View("Error_404"));
         }
     }
     else
     {
         ModelState.AddModelError("", "Thiếu thông tin");
     }
     return(RedirectToAction("Create"));
 }
Esempio n. 19
0
 public bool ThemLienHe(LIENHE model)
 {
     db.LIENHEs.Add(model);
     db.SaveChanges();
     return(true);
 }
Esempio n. 20
0
        // GET: Admin/LIENHEs/Delete/5
        public ActionResult Delete(int?id)
        {
            LIENHE lIENHE = db.LIENHEs.Find(id);

            return(View(lIENHE));
        }
Esempio n. 21
0
 public long ThemLienHe(LIENHE cs)
 {
     db.LIENHEs.Add(cs);
     db.SaveChanges();
     return(cs.ID);
 }