Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (Session["account"] != null)
     {
         Models.AccountEntity accEntity = new Models.AccountEntity();
         string         email           = Session["account"].ToString();
         Models.Account account         = accEntity.FindByEmail(email);
         if (account == null || account.ACCChucNang > 1)
         {
             Response.Redirect("~/");
         }
         else if (this.Page.RouteData.Values["khenthuong"] != null)
         {
             try
             {
                 int khenthuongID = Convert.ToInt32(this.Page.RouteData.Values["khenthuong"]);
                 Models.KhenThuongEntity ktEntity   = new Models.KhenThuongEntity();
                 Models.KhenThuong       khenthuong = ktEntity.Find(khenthuongID);
                 if (khenthuong == null)
                 {
                     this.RedirectIndex();
                 }
             }
             catch
             {
                 this.RedirectIndex();
             }
         }
         else if (this.Page.RouteData.Values["nhanvien"] != null)
         {
             try
             {
                 int nhanvienID = Convert.ToInt32(this.Page.RouteData.Values["nhanvien"]);
                 Models.NhanVienEntity nvEntity = new Models.NhanVienEntity();
                 Models.NhanVien       nhanvien = nvEntity.Find_NhanVien(nhanvienID);
                 if (nhanvien == null)
                 {
                     this.RedirectIndex();
                 }
             }
             catch
             {
                 this.RedirectIndex();
             }
         }
         else
         {
             this.RedirectIndex();
         }
     }
     else
     {
         Response.Redirect("~/");
     }
 }