想利用COOKIE記錄當前用戶剛才是否發了貼
MyVar=RequestCookies("starttime")
if myvar="" then
ResponseCookies("starttime")=time()
ResponseCOOKIES("starttime")Expires=DateAdd("n"now())
else
responseWrite("您提交的信息頻率過快請過分鐘後提交下一條")
responseend
end if
為什麼這樣不起作用哪句錯了
MyVar=RequestCookies("starttime")
if myvar="" then如果 為空則證明該用戶沒有來到過該頁面
ResponseCookies("starttime")=time()這時session("starttime")不為空
ResponseCOOKIES("starttime")Expires=DateAdd("n"now())設置COOKIE保留時間為一分鐘
else
responseWrite("您一分鐘前來過這裡請過一會再來")
responseend
end if
From:http://tw.wingwit.com/Article/program/net/201311/14471.html