public void ShowDetailInfo(string id, MailItem Item) { selectItem = Item; var dic = new Dictionary <string, object>() { { KeyParamId, id } }; YxTools.SendActionWithCacheKey(ActionName, dic, SuccessCall, YxTools.GetCacahKey(ActionName, dic)); }
protected virtual void SendActionWithPage() { string cacaheKey = ""; SetActionDic(); if (ActionWithCacheKey) { cacaheKey = YxTools.GetCacahKey(ActionName, ActionParam); } YxTools.SendActionWithCacheKey(ActionName, ActionParam, UpdateView, cacaheKey); }