程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> asp cookies實例教程

asp cookies實例教程

編輯:關於ASP編程

    想利用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

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