So basically i'm wondering how safe is my way of using Session variables.
I have a login form where user types his username/password, it gets parametrized then queried, if username/password exists, then a userID is returned from db table. This is unique for every user.
when i have this value, this is where i'm wondering whether this safe way of storing the userID inside the session variable uID? anyhow this is how i do it,
Session["uID"] = (int)dt.DefaultView[0]["userID"];
FormsAuthentication.RedirectFromLoginPage(username.Text, false);
Response.Redirect("userPage.aspx", false);
then the page is redirected to another page where i use the session variable to fetch the users tables from the db.
Thanks in advance for your feedback