程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程問題解答 >> 如何決定是否將登錄內容保存到Cookie裡?

如何決定是否將登錄內容保存到Cookie裡?

編輯:編程問題解答

login.htm

<% @ Language=javascript %>
<%
if (Request.Cookies("SavedLogin").HasKeys) {
    Response.Redirect("checklogin.asp?Cookie=1")
}
%>

<html>
<head>

<title>精彩春風之登錄頁面</title>

</head>
<body>
我要登錄隨風起舞
<FORM ACTION="CheckLogin.asp" METHOD="POST">
    電子郵件: <INPUT TYPE="Text" NAME="email" SIZE="40"><BR>
    口令: <INPUT TYPE="Password" NAME="Password" SIZE="40"><P>
    <INPUT TYPE="Checkbox" NAME="SaveLogin"> 要把登錄內容存為Cookie嗎?<P>
    <INPUT TYPE="Submit" VALUE="登錄"><INPUT TYPE="RESET">
</FORM>

 

checklogin.asp
<%
dim strEmail
if Request.QueryString("Cookie") = 1 then
    strEMail = Request.Cookies("SavedLogin")("Email")
else
    strEMail = Request.Form("email")
end if

dim bLoginSaved

if Request.Form("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 %>
    將登錄信息保存到Cookie裡去<HR>
<% end if %>
歡迎光臨隨風起舞!<P>

<% if Request.QueryString("Cookie") = 1 then %>
    保存成功!<P>
<% end if %>
請確認您的電子郵件: <% = strEMail %>
</body></html>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved