コード例 #1
0
        public string Details(System.Web.UI.Page page, int nGameLogID)
        {
            Common.Web.Page oPage = page as Common.Web.Page;
            Common.Web.Core oDB   = oPage.DBase;
            ApiControl      oApi  = Config.GetApIEngine();

            if (nGameLogID > 0)
            {
                lblName.Text = "Game Log #: " + nGameLogID.ToString();
                string txtHistory = oApi.GetPersonalHandHistory(nGameLogID, ApiMsg.msgForAction.GETPERSONALHANDHISTORYASTEXT);
                hdnLogData.Value = txtHistory;
            }

            oApi = null;
            return("");
        }