asp cookie登录验证的例子

发布时间:2019-08-07编辑:脚本学堂
一个asp cookie用户登录验证的例子,有需要的朋友,参考下了。

1、登录页面 login.htm
 

复制代码 代码示例:
<FORM ACTION="checklogin.asp" METHOD="POST">
电子邮件: <input TYPE="Text" NAME="email" SIZE="40">
密码: <input TYPE="Password" NAME="Password" SIZE="40">
<input TYPE="checkbox" NAME="SaveLogin" value="ON">注册内容保存为Cookie吗?
<input TYPE="Submit" VALUE="登录"><input TYPE="RESET">
</FORM>

2、登录检测页 checklogin.asp
 

复制代码 代码示例:
<%
dim bLoginSaved
if Request("SaveLogin") = "on" then
Response.Cookies("SavedLogin")("EMail") = Request("email")
Response.Cookies("SavedLogin")("pw") = Request("password")
Response.Cookies("SavedLogin").Expires = Date + 30
bLoginSaved = True
else
bLoginSaved = False
end if
%>
<html>
<head>
<title>脚本学堂-www.jb200.com</title>
</head>
<body>
<% if bLoginSaved then %>
将注册内容保存到Cookie<HR>
<% end if %>
欢迎光临脚本学堂!<P>
请确认您的电子邮件: <% = Request("email") %>
</body>
</html>