When a user logs into my site:
Session["User"] = new User(Name);
To see if a visitor to a page is logged in:
if(Session["User"] != null) {
//Session["User"].Name is logged in!
}
Is this secure? Does the client have any way of modifying the Session variables?