Skip to content

Instantly share code, notes, and snippets.

@Judiths
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Judiths/9543694 to your computer and use it in GitHub Desktop.
Save Judiths/9543694 to your computer and use it in GitHub Desktop.
<%
Response.buffer=true
dim count
count=request.cookies("cc")
if count>"0" then
count=count+1
response.write("It's "&count&"times to visit!")
else
count=1
response.write("Welcome to your first visiting!")
end if
response.cookies("cc")=count
response.flush
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment