The PageHit method increments the hit count for the current Web page.
Object.PageHit()
The following example uses the PageHit method to increment the number of times that the current Web page has been opened.
<%
Set MyPageCounter = Server.CreateObject("MSWC.PageCounter")
MyPageCounter.PageHit
%>
This Web page has been viewed <%= MyPageCount.Hits %> times.