예제 #1
0
        protected void btnPhucHoi_Click(object sender, EventArgs e)
        {
            int idcasau = int.Parse(((Button)sender).CommandArgument);
            int res     = csCont.CaChet_PhucHoi(idcasau, UserId);

            if (res == 1)
            {
                Page.ClientScript.RegisterStartupScript(typeof(string), "savesuccess", "alert('Phục hồi thành công');", true);
                btnLoad_Click(null, null);
            }
            else
            {
                Page.ClientScript.RegisterStartupScript(typeof(string), "savefail", "alert('Phục hồi không thành công');", true);
            }
        }