private void DoSave() { WelfareConfig ent = this.GetPostedData <WelfareConfig>(); ent.DoCreate(); this.PageState.Add("Id", ent.Id); //string CouponCost = this.RequestData.Get("CouponCost") + ""; //string MarryCheckCost = this.RequestData.Get("MarryCheckCost") + ""; //string NoMarryCheckCost = this.RequestData.Get("NoMarryCheckCost") + ""; //WelfareConfig Ent = new WelfareConfig(); //Ent.CouponCost = decimal.Parse(CouponCost); //Ent.MarryCheckCost = decimal.Parse(MarryCheckCost); //Ent.NoMarryCheckCost = decimal.Parse(); }
string type = String.Empty; // 对象类型 #endregion #region ASP.NET 事件 protected void Page_Load(object sender, EventArgs e) { op = RequestData.Get <string>("op"); id = RequestData.Get <string>("id"); type = RequestData.Get <string>("type"); WelfareConfig ent = null; switch (this.RequestAction) { case RequestActionEnum.Update: ent = this.GetMergedData <WelfareConfig>(); ent.DoUpdate(); this.SetMessage("修改成功!"); break; case RequestActionEnum.Insert: case RequestActionEnum.Create: ent = this.GetPostedData <WelfareConfig>(); ent.DoCreate(); this.SetMessage("新建成功!"); break; case RequestActionEnum.Delete: ent = this.GetTargetData <WelfareConfig>(); ent.DoDelete(); this.SetMessage("删除成功!"); return; } if (op != "c" && op != "cs") { if (!String.IsNullOrEmpty(id)) { ent = WelfareConfig.Find(id); } this.SetFormData(ent); } }