コード例 #1
0
        private void DeleteCustomer(int custId)
        {
            CommonBLL commonBll = new CommonBLL();

            commonBll.DeleteCustomer(custId, _userId);
            LoadCustomer();
            ScriptManager.RegisterStartupScript(this, typeof(Page), "alert", "<script>javascript:void alert('" + ResourceManager.GetStringWithoutName("ERR00006") + "');</script>", false);
        }