Can anyone point me to a snippet of asp code that will help execute something only once per session, or more specifically, once per unique visit to my site?
Thanks, dan
mattglet
4:04 pm on Apr 20, 2005 (gmt 0)
Here's a per-session block:
<% if not session("your_example") = "something" then '--- do whatever you want to do session("your_example") = "something" end if %>