求助:Microsoft VBScript 编译器错误 错误 '800a03f6' ,怎么解决呢。
我的ASP 提示“Microsoft VBScript 编译器错误 错误 '800a03f6' 缺少 'End'
/iisHelp/common/500-100.asp,行242
Microsoft VBScript 运行时错误 错误 '800a01a8'
缺少对象: ''
/me_test.asp,行16
”
是不是语法错了,源文件如下:
<%@ Language=VBScript %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
</head>
<%
set adocon=Server.Createobject("adodb.connection")
adocon.open"Driver={microsoft odbc for oracle};server=yfrac1;uid=ibsscx;pwd=ibsscx;"
set rec1=server.createobject("adodb.recordset")
sql1="select * from tb_cm_serv where acc_nbr='8999899'"
rec1.open sql1,adocon,1,3
response.write"field.name:"&field.value
set rec1=nothing
conn.close
%>
<body>
</body>
</html>