מקווה שזה לא נחשב הקפצה, אבל יש לי עוד שאלות בנושא.
פשוט ככה?
אם ליוזר קיים IP אז הוא מחובר?
כל פעם לעשות את הבדיקה הזאתי ואז יודעים שהוא מחובר?
יש דרך אחרת?
מה לגבע קטע זה:
קוד:
protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
if (FormsAuthentication.Authenticate(username, password))
{
e.Authenticated = true;
}
else
{
e.Authenticated = false;
}
}