Hey all,
Just encountered this error while trying to view a forum with posts:
ADODB.Recordset error '800a0cc1'
Item cannot be found in the collection corresponding to the requested name or ordinal.
/forum/forum_topics.asp, line 424
This is the code around that line number:
'Read in the subject and author and number of replies from the record set
strTopicStartUsername = rsTopic("Username")
strFirstPostMsg = Mid(rsTopic("Message"), 1, 275)
lngTopicStartUserID = CLng(rsTopic("Author_ID"))
lngNumberOfReplies = CLng((rsTopic.RecordCount) - 1)
dtmFirstEntryDate = CDate(rsTopic("Message_date"))
Apparently, it's this line:
strFirstPostMsg = Mid(rsTopic("Message"), 1, 275)
Any ideas? I just did a fresh install of 7.7 today for SQL Server and hadn't noticed any other problems until I posted in a forum, then tried viewing that forum to see the post.
Warren
Edited by wgbeatty