open your topic.asp file.
On line #252 (or thereabouts) find this code:
if strDBType = "mysql" then 'MySql specific code
insert the following right below that line:
if mypage > 1 then
intOffset = CInt((mypage-1) * strPageSize)
strSql = strSql & " LIMIT " & intOffset & ", " & strPageSize & " "
end if