The Hits method returns the number of times that a specified Web page has been opened.
Object.Hits([pathInfo])
A LONG indicating the number of times that the specified Web page has been opened.
The following example uses the Hits method to display the number of times that the current Web page has been opened.
<% Set MyPageCounter = Server.CreateObject("MSWC.PageCounter") %> This Web page has been viewed <%= MyPageCount.Hits %> times. <P> Page Myscript.asp has been viewed <%= MyPageCounter.Hits("/VirtualDir1/Myscript.asp") %> times.