I've looked into this and I'm not sure why Google is attempting to open this page with null values for the two fields in the querystring, but anyway, here is a solution.
Edit the file new_reply_form.asp in 8.02 with note pad and change the line below:-
Change line 123 to:-
If isNumeric(Request.QueryString("PN")) Then intRecordPositionPageNum = CInt(Request.QueryString("PN")) Else intRecordPositionPageNum = 1
|
And also change line 125 to:-
If isNumeric(Request.QueryString("TR")) Then intTotalRecords = CLng(Request.QueryString("TR")) Else intTotalRecords = 1
|
Edited by -boRg- - 19 June 2006 at 10:35am