WordPress企业主题定制/开发/优化

ASP记住密码的功能实现

首页 » ASP » 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")
%>

分类与标签:

ASP

相关项目

  • WordPress外贸企业主题

  • 最近更新

  • 热门标签