Código fuente de 'Contador de visitas 3.asp'
<html>
<head>
<title>Contador de visitas 2 - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>
<body style="font-family: Arial; font-size: 11pt">
<p align="center"><b><font size="3">Contador de visitas 3</font></b></p>
<br><br>**Si da error, pruébalo localmente instalando previamente la dll**
<%
Dim objPageCount
Set objPageCount = Server.CreateObject("MSWC.PageCounter")
'Increment the counter
objPageCount.PageHit()
'Display the total number of hits to the page
Response.Write "Número de visitas a la página: " & objPageCount.Hits()
%>
</body>
</htm>