|
<%
Set MyPageCounter = Server.CreateObject("MSWC.PageCounter")
If Request.ServerVariables("REMOTE_ADDR") <> "192.168.0.6" Then 'Set the IP to your own IP (if you have a static one, else leave it be)
MyPageCounter.PageHit 'Increments the Count
End If
%>
<%= MyPageCounter.Hits %>
<% EndTime = Timer %>
|