ASP.NET and Session State/Login info
- by V-Man
Are Session variables (in ASP.NET) the safest way to store data relating to whether a user is logged in or not? i.e. Session["LoggedIn"] = 'No'
I know Session variables can be spoofed so I assume there must be a safer way.
Any ideas for ASP.NET?
Thanks!