Aby podać więcej szczegółów na temat mojego komentarza:
Krok 1
Utwórz Sessions
tabela zawierająca następujące pola:
SessionId ( Primary Key ) char(24)
UserId ( Foreign Key to Users table ) int
LoginDate datetime
Krok 2
Utwórz swoją Session
klasa.
public class Session {
public string Sessionid { get; set; }
public int UserId { get; set; }
public DateTime LoginDate { get; set; }
}
Krok 3
Jeśli masz funkcję o nazwie DoLogin
.
public void DoLogin() {
//validation commes here...
//create your session
Session["User"] = user; //user is your User class object
//create session class for db
Session session = new Session();
session.SessionId = ""; //you can generate here a 24 character string
session.UserId = user.Id;
session.LoginDate = DateTime.Now;
db.Add(session); //add session to db
}
Krok 4
Utwórz funkcję, aby sprawdzić, czy użytkownik jest już zalogowany.
public bool IsLoggedIn(User user) {
Session session = db.GetSession(user.Id); //Get session of the user
if(session != null)
{
return true;
} else {
return false;
}
}