aspcms 提示错误号:-2147467259
提示:【】
错误号:-2147467259错误描述:操作必须使用一个可更新的查询。sql=update AspCms_Content set TimeStatus=0 where TimeStatus=1 and Timeing <= #2013-9-10#版本 AspCms2.0
回答:
解决方法
修改inc目录下AspCms_CommonFun.asp搜索 TimeStatus=0代码 找到
'触发定时发布Sub Rposting conn.exec "update {PRefix}Content set TimeStatus=0 where TimeStatus=1 and Timeing <= #" & formatDate(now(),4) &"#","exe"End Sub
将now替换为date即可
Sub Rposting conn.exec "update {prefix}Content set TimeStatus=0 where TimeStatus=1 and Timeing <= #" & formatDate(date(),4) &"#","exe"End Sub