login.htm
請注冊登錄隨風(fēng)起舞
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">您要將注冊內(nèi)容保存為Cookie嗎?
input TYPE="Submit" VALUE="登錄">input TYPE="RESET">
/FORM>
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>山水盈盈之登錄驗證/title>
/head>
body>
% if bLoginSaved then %>
將注冊內(nèi)容保存到CookieHR>
% end if %>
歡迎光臨隨風(fēng)起舞!P>
請確認您的電子郵件: % = Request("email") %>
/body>/html>
您可能感興趣的文章:- PHP通過session id 實現(xiàn)session共享和登錄驗證的代碼
- php自動注冊登錄驗證機制實現(xiàn)代碼
- jQuery.ajax 用戶登錄驗證代碼
- 基于pear auth實現(xiàn)登錄驗證
- jquery ajax 登錄驗證實現(xiàn)代碼
- php cookie 登錄驗證示例代碼
- php session應(yīng)用實例 登錄驗證
- S2SH整合JQuery+Ajax實現(xiàn)登錄驗證功能實現(xiàn)代碼