PC6下载站

分类分类

ASP实现记住密码的功能

关注+2010-02-01作者:

ASP实现记住密码的功能:

把以下代码加入验证页: 
<%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") 
%> 

展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消