protected void GLoginInfo(int iUserID) { string sPGameInfo = GameLoginBLL.GameLoginLastSel(iUserID); if (sPGameInfo != null && sPGameInfo.Length > 4) { iGameNum = sPGameInfo.Split('|').Length; } else { iGameNum = 0; } sPGames = sPGameInfo.Split('|'); }
public string GLoginSel() { int iUserID = GetUserID(); return(GameLoginBLL.GameLoginLastSel(iUserID)); }