Around line 230 to 290 in topic.asp, you will find this bit of code. Add the code in red. That should solve it.for iReply = 0 to iReplyCount
intReplyID = arrReplyData(rREPLY_ID,iReply)
if LastPostReplyID = intReplyID then
intPageNumber = ((iReply+1)/strPageSize)
if intPageNumber > cLng(intPageNumber) then
intPageNumber = cLng(intPageNumber) + 1
else
intPageNumber = cLng(intPageNumber)
end if
strwhichpage = "whichpage=" & intPageNumber & "&"
exit for
end if
next