public virtual void Update(long id) { string name = ctx.Post("Name"); if (strUtil.IsNullOrEmpty(name)) { echoError("请填写名称"); return; } FileLang pf = FileLang.GetById(id); pf.Name = name; pf.update(); echoToParentPart(lang("opok")); }
public void Update(int id) { string name = ctx.Post("Name"); if (strUtil.IsNullOrEmpty(name)) { errors.Add("请填写名称"); run(Edit, id); return; } FileLang pf = FileLang.GetById(id); pf.Name = name; pf.update(); echoRedirect(lang("opok"), List); }