在ASP编程中,身份认证可以说是常要用到的。但怎么样才能做到认证的安全呢?
表单提交页面:sub.htm
<html> <head> <title>管理员登陆</title> <body> <form name="form1" method="post" action="sub.asp"> <p> 管理员: <input type="text" name="UserID" size="25" maxlength="20"> 密 码: <input type="text" name="Pass" size="12" maxlength="20"> <input type="submit" name="Submit" value="提交"> </p> </form> </body> </html>