You can get the username like this:
string UserName = Login1.UserName.ToString();
Session["UserName"] = UserName;
Use OnLoggingIn or OnLoggedIn
to use in other pages
string UserName = (string)Session["UserName"];
and based on the username query other data.