protected void bt_Delete_Click(object sender, EventArgs e)
    {
        PM_PromotorSalaryBLL bll = new PM_PromotorSalaryBLL((int)ViewState["PromotorSalaryID"]);
        if (bll.Model.State == 1) bll.Delete();

        Response.Redirect("PM_PromotorSalaryDetail.aspx?PromotorID=" + ViewState["PromotorID"].ToString());
    }
    protected void bt_Delete_Click(object sender, EventArgs e)
    {
        PM_PromotorSalaryBLL bll = new PM_PromotorSalaryBLL((int)ViewState["PromotorSalaryID"]);

        if (bll.Model.State == 1)
        {
            bll.Delete();
        }

        Response.Redirect("PM_PromotorSalaryDetail.aspx?PromotorID=" + ViewState["PromotorID"].ToString());
    }