我是靠谱客的博主 简单裙子,最近开发中收集的这篇文章主要介绍如何决定是否将登录内容保存到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>

最后

以上就是简单裙子为你收集整理的如何决定是否将登录内容保存到Cookie里?的全部内容,希望文章能够帮你解决如何决定是否将登录内容保存到Cookie里?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(120)

评论列表共有 0 条评论

立即
投稿
返回
顶部