håller på med ett forum och kan inte få pagingen att funka:
Fel
Object or provider is not capable of performing requested operation.
/pages/forum.asp, line 170
userSQL= "Select * From Users Where UserID="& CInt(Session("devnetDevID"))
Set userprop=Conn.Execute(userSQL)
intPageSize = userprop("MessagesPP")
intPage = Request.QueryString("page")
If intPage = "" Then intPage = 1
antaldgr=userprop("MessagesOld")
DispMessages=userprop("DispMessages")
userprop.close
Set userprop=Nothing
topicSQL="Select * From DevTopics Where ForumBel="& forum &" And DevTopMod >= '" & date()-antaldgr & "' Order By DevTopMod DESC"
Set topic=Conn.Execute(topicSQL)
topic.PageSize = intPageSize
topic.AbsolutePage = intPage
intTotalPages = topic.PageCount
If topic.EOF Then
Response.Write ""
Else
Do Until topic.EOF or intRecordCount >= intPageSize
intRecordCount = intRecordCount + 1