public void wikiread(string id) { AWikiCell cell = OnLoadWikiCellWithContent(id); if (cell == null) { SendError("1"); return; } SendError(cell.ToArray()); }
public void wikimodify(string id, string content) { AWikiCell cell = OnLoadWikiCellWithoutContent(id); if (cell == null) { SendError("1"); return; } cell.content = content; var t = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); adb.UpdateOneData(TableName , ADBAccessor.filter_eq("i", cell.id) , ADBAccessor.updates_build( ADBAccessor.update("c", content) , ADBAccessor.update("lt", t) )); SendError(cell.ToArray()); }