Session after login and the possible of hacking
问题 I want to know once and for all in classic ASP! if i have a form like this <form action="login.asp" method="post"> <input type="text" name="username" value="" /> <input type="password" name="password" value="" /> </form> and in the login.asp page i check if the username and password are correct i give a session("loggedin") a value then in everypage i check for that session and for that value my question - is that the right, most common secure thing to do??? or i miss something? 回答1: I am