コード例 #1
0
        public JsonResult DeletePopUpWindowsConfigById()
        {
            string msg    = string.Empty;
            bool   result = false;

            try
            {
                result = BeautyHomePageConfigManager.DeleteBeautyPopUpWindowsConfig(PKID);
                if (result)
                {
                    RefreshBeautyPopUpCache();
                }
            }
            catch (Exception ex)
            {
                msg = ex.Message;
            }

            return(Json(new
            {
                Result = result,
                Msg = msg
            }));
        }