Hi, Is it possible to do the following with the sessions? In my web application I would like to tell a user ,when he is doing shopping to cart, that he is login. So, in the login page ( where user insert his ID and password) I used request.session['UserIsLogged'] = UserID and on a page, where I would like to inform the user that is logged in,I will check the 'UserIsLogged' session. It worked for me but only until another user logged in. Then ALL so far signed users were regarded as the last signed user because 'UserIsLogged' session was overwritten by the last signed UserID.
To sum up, I would like to inform ( in various views) that a user is signed with his ID but do not know how. The above outlined procedure does not work :-( So, how to solve that above outlined problem? Thank you. Regards, L.

