Hello Tiger,
As you have a dynamic IP, there is another way that you can prevent your own page views being logged.
I notice that hitslink.com tracks impressions using some code that refers to the following host name:
counter.hitslink.com
(check the instructions you have been given by hitslink.com as it might be slightly different)
You can stop your computer from being able to access that host (and therefore prevent your own page views from being logged) by editing your hosts file. Under Windows, I think it is:
c:\windows\system32\drivers\etc\hosts
You need to edit that file, and add the line:
Code:
counter.hitslink.com 127.0.0.1
Windows always looks in the hosts file before doing a DNS lookup, so it would then get 127.0.0.1 for counter.hitslink.com which is a standard IP address that means "the local computer", so the request will just silently fail.
Hope this helps!