指引网

当前位置: 主页 > 编程开发 > ASP >

asp cookies实例教程

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:46
[摘要] 指引教程为您提供asp cookies实例教程等资源,欢迎您收藏本站,我们将为您提供最新的asp cookies实例教程资源
<script>ec(2);</script>

想利用COOKIE记录当前用户刚才是否发了贴,
MyVar=Request.Cookies("starttime")
if  myvar="" then

Response.Cookies("starttime")=time()
Response.COOKIES("starttime").Expires=DateAdd("n",1,now())
else
response.Write("您提交的信息频率过快请过15分钟后提交下一条")
response.end
end if
为什么这样不起作用,哪句错了

MyVar=Request.Cookies("starttime")
if  myvar="" then'如果 为空则证明该用户没有来到过该页面

Response.Cookies("starttime")=time()'这时session("starttime")不为空
Response.COOKIES("starttime").Expires=DateAdd("n",1,now())'设置COOKIE保留时间为一分钟
else
response.Write("您一分钟前来过这里,请过一会再来")
response.end
end if

------分隔线----------------------------