Everything works fine with the exception of when I try to view Page Logs. I have seen the other posts about a missing variable (strIPgateshowrecs), but that variable is there in config.asp.
This is the error I am getting:
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/forum/forum2/admin_ipgate.asp, line 1401
The abbreviated section of code is here (lines 1390-1401):
numofobs=0
Set rs = Server.CreateObject("ADODB.Recordset")
strSql = "SELECT * from " & strTablePrefix & "IPLOG order by IPLOG_ID DESC"
rs.cursorlocation=aduseclient
rs.cachesize=5
rs.Open StrSql, strConnString
if not rs.BOF then
rs.movefirst
rs.pagesize=int(strIPGateshowrecs)
Any ideas?