首页 > 学院 > 编程设计 > 正文

如何让用户再次访问我的网站时不需再提交相关信息?

2020-06-19 13:51:41
字体:
来源:转载
供稿:网友

< %@ LANGUAGE="VBscript" %  >
< %
Chunfeng=Request.Cookies("Chunfeng")

' 初始设置页面,读取名字为ChunfengCookie.
If Chunfeng ="" then

' 判断是否已经存在Cookie.
  Response.Cookies("Chunfeng")="x"
  Response.Cookies("Chunfeng").Expires=#January 01, 2010#
  Response.Redirect "Chunfeng.asp"

' 如果不存在,就创建并设置Cookie,并转到页面Chunfeng.asp.当下次访问时,因为存在Cookie,就不会再转到Chunfeng.asp 页面.
Else
'rest of the page

' 如果Cookie已经存在,则访问者将执行页面中剩余的代码.
End if
% >

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表