asp.net - Problem with Sessions in ASP .NET -


I have a strange problem with session variables: I am storing some credentials in such session variables:

  session ["login"] = "foo"; Session ["password"] = "oh";  

The page has been deployed to a specific server. After logging in to the page, I came to know that other users (who are in the same network area) are calling the page and are also logged in! I thought those data will be stored for me only (I think the server sends me some cookies back), but is not it?

I am sure there is a lack of knowledge anywhere, what is happening?

Thanks

I do not recommend placing a password in it for security purposes One Session Variable If you must use a session variable, do not store passwords in clear text. Use some encryption method instead.


Comments

Popular posts from this blog

Eclipse CDT variable colors in editor -

AJAX doesn't send POST query -

wpf - Custom Message Box Advice -