Response.Cookies("SiteVisits")("LastTime") = datLast
Response.Cookies("SiteVisits").path = "/" 'apply to entire site
'make it stay on the user's system for three months
Response.Cookies("SiteVisits").expires = DateAdd("m", 3, Now)
% >
cookie技术的一个问题是当访问者重新回到你的站点时,你只能测量他上次访问的长度。为此,我们允许cookie在他们的机器上存在3个月,你可以修改这个时间值来适应你的需求。上一页 [1] [2] [3] [4] [5] |
|