为何论坛不能发表文档
改编一个论坛发现发表话题或者编辑文档的时候通不过,不能保存到数据库错误类型:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] 操作必须使用一个可更新的查询。
/bbs/forum/new.asp, 第 90 行
代码是:If (Re_total = -1) Then
' count the total records by iterating through the recordset
Re_total=0
While (Not Re.EOF)
Re_total = Re_total + 1
Re.MoveNext
Wend
' reset the cursor to the beginning
If (Re.CursorType > 0) Then
Re.MoveFirst
Else
Re.Requery
End If