billson
Starting Member
3 Posts |
Posted - 30 March 2006 : 12:34:34
|
You can try in this forum "Help: General / Current Version (v3.4.xx)".
When "Show all topics" is selected, there are 36 pages. Then, you choose "Show topics from last 2 days", only one page return Now I load the following link again http://forum.snitz.com/forum/forum.asp?FORUM_ID=111&sortfield=lastpost&sortorder=&whichpage=18
Server return error
quote: ADODB.Recordset error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/forum/forum.asp, line 337
It related to the code here line 337 arrTopicData = rs.GetRows(strPageSize) line 338 iTopicCount = UBound(arrTopicData, 2)
It should rewrite like this to prevent the asp error if not rs.EOF then arrTopicData = rs.GetRows(strPageSize) iTopicCount = UBound(arrTopicData, 2) else iTopicCount = "" inttotaltopics = 0 end if
|
|