Source Code:
<%
'*** Keeping track of how many times
'*** a user visits a web page, by
'*** reading and writing cookies.
'*** In this example "asphole" will be
'*** the name of our cookie, and
'*** "totalvisit" will be the 'key'
'*** value we keep track of. You can
'*** have multiple 'keys' for each
'*** cookie.
'*** Declare your variables
Dim NumVisit
'*** Check to see how many times they
'*** have been to your web page.
NumVisit = Request.Cookies("asphole")("totalv...[ 查看全文 ]