This commit is contained in:
Beppe
2019-07-06 01:41:20 +02:00
parent df39b0392c
commit d883bce694
16 changed files with 110 additions and 33 deletions

View File

@@ -1,6 +1,8 @@
using System;
using System.Diagnostics;
using System.Web;
using System.Web.UI;
using Globals.classes;
using Logic;
namespace Gui
@@ -17,6 +19,8 @@ namespace Gui
logic = (LogicLayer)System.Web.HttpContext.Current.Application["logic"];
listGames.DataSource = logic.games;
listGames.DataBind();
Person test = (Globals.classes.Person)HttpContext.Current.Application["user"];
Debug.Print(test.ToString());
}
}