public new ActionResult Info(string controlName)
        {
            bool result = false;

            Model.ControlContent model = null;
            if (controlName != null)
            {
                model  = bll.GetModel(controlName);
                result = model == null ? false : true;
            }
            if (result)
            {
                return(this.Json(new { result = 1, data = model }, JsonRequestBehavior.AllowGet));
            }
            else
            {
                return(this.Json(new { result = 0, msg = "没有此项" }));
            }
        }
        public ActionResult Update(Model.ControlContent model)
        {
            bool result = false;

            if (model != null)
            {
                if (model.ControlType == "input" || model.ControlType == "checkbox")
                {
                    result = bll.Update(model);
                }
            }

            if (result)
            {
                return(this.Json(new { result = 1, data = "" }));
            }
            else
            {
                return(this.Json(new { result = 0, msg = "修改失败" }));
            }
        }