您现在的位置: 万盛学电脑网 >> 程序编程 >> 网络编程 >> asp编程 >> 正文

ASP实现记住密码的功能

作者:佚名    责任编辑:admin    更新时间:2022-06-22

把以下代码加入验证页: 
<%if Trim(Cstr(request.QueryString("check")))="true" then ‘用来判断是否有选择记住密码 
Response.Cookies("UserCookie")("username") = Trim(Cstr(request.Form("username"))) 
Response.Cookies("UserCookie")("passwords") = trim(request.Form("passwords")) 
’Response.Cookies("UserCookie").Path = "/login.asp" 
Response.Cookies("UserCookie").Expires= DateAdd("y",1,Now()) 
end if%> 

登录页代码: 
//这段代码是用来判断是否有选择记住密码,同时也发送一个判断字段给后台 
<script type="text/javascript"> 
function check() 
{if(document.getElementById("checkbox").checked) 
alert(document.getElementById("checkbox").checked) 
document.getElementById("ddd").action=’check.asp?id=user&check=’+document.getElementById("checkbox").checked;} 
</script> 

‘以下代码是用来实现记住密码的功能 
<% 
strUsername=Request.Cookies("UserCookie")("username") 
strPassword=Request.Cookies("UserCookie")("passwords") 
%>