新手求助。ASP调试错误(Microsoft JET Database Engine (0x80040E14))。谢谢!
技术信息(用于支持人员)错误类型:
Microsoft JET Database Engine (0x80040E14)
语法错误 (操作符丢失) 在查询表达式 'TSID=' 中。
/TsDg.asp, 第 14 行
浏览器类型:
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET4.0C; .NET CLR 2.0.50727; InfoPath.3)
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<%
if session("user")<>"" then tsid=request("tsid")
user=session("user")
realname=session("realname")
lxdh=session("lxdh")
lxdz=session("lxdz")
strConnString="provider=microsoft.jet.oledb.4.0;data source="& Server.MapPath("/data/TSSC.mdb")
set Conn=server.CreateObject("adodb.connection")
Conn.open strConnString
set rs=server.CreateObject("adodb.recordset")
sql="select * from TS where TSID="& tsid
rs.open sql,Conn,1,1
if not rs.eof then
tsmc=rs("tsmc")
tslb=rs("tslb")
tszz=rs("tszz")
tsjj=rs("tsjj")
tssj=rs("tssj")
end if
rs.close
conn.close
%>
<html xmlns="http://www.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
</body>
</html>
请告诉指导下。谢谢!