|
Hit Counter
How about a counter with only 3 lines of code , impossible never
in this example we use the Microsoft PageCounter component.
<%
set objHitCounter = Server.CreateObject("MSWC.PageCounter")
objHitCounter.PageHit
%>
Now place this where you want the counter to appear
<%= objHitCounter.Hits %>
|