<%
fczh=Request.Form("fczh")
fcdjzh=Request.Form("fcdjzh")
tdzh=request.Form("tdzh")
if fczh = "" or fcdjzh = "" or tdzh="" then
response.Write ("<Script>alert('请填写完整信息');window.location='index.asp';</script>")
response.End()
end if
set rs = server.CreateObject("adodb.recordset")
sql="select * from Tract where fczh='"&fczh&"' and fcdjzh='"&fcdjzh&"' and tdzh='"&tdzh&"'"
rs.open sql,conn,1,1
if tdzh<>trim(rs("tdzh")) and fcdjzh<>trim(rs("fcdjzh")) and fczh<>trim(rs("fczh")) then
response.write ("<Script>alert('无此记录,请重新输入要查询的信息!');window.location='index.asp';</script>")
end if
%>
这样的查询对吗?我这里加上容错语句显示正常,
但是去掉容错语句就会报错:说红色的地方错误!是语法错误吗?
错误类型:
(0x80020009)
发生意外。
语法错误吗?
[此贴子已经被作者于2007-4-30 0:40:54编辑过]