예제 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         GridViewEmpList.DataSource = DAL.GetEmployeeList();
         GridViewEmpList.DataBind();
     }
 }
예제 #2
0
        protected void GridViewEmpList_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            var  empId  = Convert.ToInt32(e.Keys["Number"]);
            bool result = DAL.DeleteEmployee(empId);

            if (result)
            {
                ScriptManager.RegisterStartupScript(this, this.GetType(), "redirect", "alert('employee deleted successfully');", true);
                GridViewEmpList.DataSource = DAL.GetEmployeeList();
                GridViewEmpList.DataBind();
            }
            else
            {
                ScriptManager.RegisterStartupScript(this, GetType(), "showalert", "alert('failled to delete employee');", true);
            }
        }