永发信息网

ASP中的错误

答案:3  悬赏:10  手机版
解决时间 2021-07-29 05:08
  • 提问者网友:暮烟疏雨之际
  • 2021-07-28 09:12

错误类型:
Microsoft VBScript 编译器错误 (0x800A03EA)
语法错误
/index.asp, line 15, column 21
rs.open sql,conn,1,1,
--------------------^


浏览器类型:
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2)

网页:
GET /index.asp

时间:
2009年12月12日, 21:37:58

--------------------------------------------------------------------------------------------------------

源代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--#include file="Inc/conn.asp" -->
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%="SOL测试"%></title>

</head>

<body>
<%
dim rs,sql
set rs=server.CreateObject("adodb.recordset")
sql="select * from zhigong where name like '%赵%' order by gongzi desc"
rs.open sql,conn,1,1,
response.Write("姓名&nbsp;&nbsp;工资<br />")
do while not rs.eof
response.Write(rs("name"))
response.Write(rs("gongzi"))
response.Write("<br />")
rs.movenext
loop

%>
</body>
</html>

最佳答案
  • 五星知识达人网友:封刀令
  • 2021-07-28 09:57

rs.open sql,conn,1,1,最后一个逗号去掉


应该是rs.open sql,conn,1,1

全部回答
  • 1楼网友:鸽屿
  • 2021-07-28 11:59
(rs.open sql,conn,1,1,)这个后面不该有(,)只写作(rs.open sql,conn,1,1)就行了。
  • 2楼网友:过活
  • 2021-07-28 11:26
sql="select * from zhigong where name like '%赵%' order by gongzi desc"
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯