我在用DW8做留言板时,留言,管理等都可以,就是不能跳转,错误报告如下:
HTTP 错误 500.100 - 内部服务器错误 - ASP 错误
Internet 信息服务
错误类型:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] 语法错误 (逗号) 在查询表达式 'y_id = 20, 20' 中。
/delete.asp, 第 121 行
这段有错的代码是:
<%
Dim i
Dim i_numRows
Set i = Server.CreateObject("ADODB.Recordset"
i.ActiveConnection = MM_liuyb_STRING
i.Source = "SELECT * FROM yonghu WHERE y_id = " + Replace(i__MMColParam, "'", "''"
+ " ORDER BY y_id DESC"
i.CursorType = 0
i.CursorLocation = 2
i.LockType = 1
i.Open()
i_numRows = 0
%>
第121行是i.Open()