<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<%
n1=request.form("n1")
n1=cdbl(n1)
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("access1.mdb")%>
<%set rs=server.createobject("adodb.recordset")
exec="select * from ziliao1 where ID>="&n1
rs.open exec,conn,1,1%>
<form name="form1" method="post" action="chaxun1.asp">
搜索:<br>
<input type="text" name="name">
<input type="text" name="n1">
<br>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="reset" value="重置">
</form>
<% do while not rs.eof
%>
<%=rs("ID")%>
<%=rs("name")%>
<% rs.movenext
loop
response.End
%>
</body>
</html>
这个程序在运行之后,还没有任何数值输入的时候,就把所有符合要求的纪录输出出来了,请个位高手给小弟我指点一二,如何才能在页面刚刚载入的时候,不要使得数据立即输出,而只有在筛选了之后,再进行输出呢!!!