...First create a totalhits.asp page with this code:
<!--#INCLUDE VIRTUAL="/includes/connaction.asp" -->
<%
DIM mySQL, objRS
mySQL = "SELECT * FROM tblTotalHits"
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open mySQL, objConn, adOpenKeyset, adLockPessimistic, adCmdText
DIM...