You cannot change a session variable from another session.
One way to solve your problem is to save the list of registered users in the Application object, and then change the value in this variable. To do this, you must check at the top of each page that this user is in the list of registered users.
çağdaş , , , , , . - (, )
if(Application["SuspendedUsers"].Contains(Session["UserID"]) {
Session["IsSignedIn"] = false;
Application["SuspendedUsers"].Remove(Session["UserID"]);
}