Example #1
0
        void Save()
        {
            var b = new BLL.BCaiGouMoBan();
            var r = string.IsNullOrEmpty(MoBanId) ? b.MoBan_C(this.GetForm()) : b.MoBan_U(this.GetForm());

            switch (r)
            {
            default:
                Utils.RCWE_AJAX("0", "保存失败");
                break;

            case 1:
                Utils.RCWE_AJAX("1", "保存成功");
                break;
            }
        }