[求助]select查询时的问题
请高手指点:数据库表flcp1中的字段有三个:期号 红球 蓝球,在chaxun.asp中进行记录查询(按期号进行查询)。查询步骤是:1、在form中提交查询内容(只有一个,就是txt_cx)2、把提交的值递入变量aa中。3、用"select * from flcp1 where 期号='&aa&'"语句进行查询。但是在测试时,输入期号2006093(这个记录在数据库中是有的),按下“查询”按钮后,得到的结果是“记录中没有此记录!”,而不是我要得到的结果。
<!--#include file=conn.asp-->
<html><head><title>按期号查询</title></head>
<body>
<form name=frm1 method=post action=chaxun.asp>
<center>第:<input type=text name=txt_cx size=12>期<input type=submit value=查 询 name=chaxun>
</form>
<%
aa=request.form("txt_cx")'步骤2
set rs=server.createobject("adodb.recordset")
if len(aa)>1 then
< color=red> sqlstr="select * from flcp1 where 期号='&aa&'" '步骤3</color>
rs.open sqlstr,myconn,1,3
if rs.eof then
response.write "<p>" & "记录中没有此记录!"
else
response.write "<center><table table=460 border=1>"
response.write "<tr align=center>"
for i=0 to rs.fields.count -1
response.write "<td>" & rs.fields(i).value
next
end if
end if
%>
</body>
</html>
[此贴子已经被作者于2006-8-18 21:08:35编辑过]