| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 702 人关注过本帖, 1 人收藏
标题:[求助]成绩查询系统制作遇到问题
只看楼主 加入收藏
cassy2002
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2005-7-29
收藏(1)
 问题点数:0 回复次数:8 
[求助]成绩查询系统制作遇到问题
nZ9xOt1n.rar (28.47 KB) [求助]成绩查询系统制作遇到问题

这个是完整的文件。里面有数据库
index.asp
我的问题是,我在top.asp中查询,不能查询,但在页面加载时,自动查询到数据库中的第一条记录出来了。请好心人帮帮分析分析。
<html><head><title>淳口中心学校成绩查询系统</title></head>
<frameset rows=100,* border=1>
<frame name=top src=top.asp scrolling=no noresize>
<frame name=bottom src=1.asp>
</frameset>
</html>

conn.asp
%
set myconn=Server.Createobject("Adodb.connection")
mypath=Server.mappath("data\chengji.mdb")
myconn.open "driver={Microsoft Access driver (*.mdb)};dbq=" & mypath
%>

top.asp
<html><head><title>淳口中心学校成绩查询系统</title></head>
<body background=images\bgcolor.gif>
<center>
<font size=5 face=黑体>淳口中心学校成绩查询系统</font>
<form name=frm1 method=post action=1.asp target=bottom>
<table>
<tr>
<td>
<select name=select1 id=select1 style="width:60px">
<option value=0>年份</option>
<option value=2006>2006</option>
<option value=2005>2005</option>
<option value=2004>2004</option>
</select>
</td>
<td><select name=select3 id=select3 style="width:60px">
<option value="班级" selected>班级</option>
<option value="160">160</option>
<option value="161">161</option>
<option value="162">162</option>
<option value="163">163</option>
<option value="164">164</option>
<option value="165">165</option>
<option value="166">166</option>
<option value="167">167</option>
<option value="168">168</option>
<option value="169">169</option>
<option value="170">170</option>
<option value="171">171</option>
<option value="172">172</option>
<option value="173">173</option>
<option value="174">174</option>
</select></td>
<td>姓名<input type=text name=xm size=9></td>
<td>学号<input type=text name=xh size=9></td>
<td><input type=submit name=submit value=查询></td>
<td><input type=reset name=reset value=重填></td>
</tr>
</table>
<%
i1=frm1.select1.selectedindex
f1=frm1.select1.option(i1).value
%>
</center>
</form>
</body>

1.asp
<!--#include file=conn.asp-->
<html>
<body>
<%
bj=request.form("f1")
xm=request.form("xm")
xh=request.form("xh")
if bj="班级" then bj=""
set rs=Server.CreateObject("Adodb.Recordset")
sqlstr=""
if bj <> "" then
sqlstr="where 班级=bj"
end if
if xm <> "" then
if sqlstr="" then
sqlstr="where 姓名=xm"
else
sqlstr=sqlstr & "and 姓名=xm"
end if
end if
if xh <> "" then
if sqlstr="" then
sqlstr="where 学号=xh"
else
sqlstr=sqlstr & "and 学号=xh"
end if
end if
sql="select * from 2006" & sqlstr
rs.open sql,myconn,1,3
if rs.eof then
response.write "<script language=javascript> alert('没有相关内容,请重新输入!')</script>"
else
response.write "<center><table border=1 width=600><tr align=center>"
for i=0 to rs.fields.count -1
response.write "<td>" & rs.fields(i).name
next
response.write "<tr align=center>"
for i=0 to rs.fields.count -1
response.write "<td>" & rs.fields(i).value
next
response.write "</table>"
end if
%>
</body></html>
搜索更多相关主题的帖子: 系统 制作 查询 
2006-09-20 20:11
mai_25
Rank: 3Rank: 3
来 自:上海
等 级:论坛游侠
帖 子:206
专家分:131
注 册:2006-7-22
收藏
得分:0 
[经验]这个不知道能不能帮你
VZWNPAbB.rar (32.98 KB) [求助]成绩查询系统制作遇到问题


你自己看看吧

http://www.,就算跌倒也要豪迈的笑。
2006-09-21 12:06
xiaojianxun
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-8-18
收藏
得分:0 
给你点小小的建议,下拉列框可以用循环做,这样好管理的
2006-09-21 13:36
xiaojianxun
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-8-18
收藏
得分:0 
你的没有在这里做循环,而且没有指针
for i=0 to rs.fields.count -1
response.write "<td>" & rs.fields(i).value
next
我帮你改了
for i=0 to rs.fields.count -1
response.write "<td>" & rs.fields(i).name
response.write "</td>"
next
response.write "</tr>"
response.write "<tr align=center>"
while not rs.eof
for i=0 to rs.fields.count -1
response.write "<td>" & rs.fields(i).value
response.write "</td>"
next
response.write "</tr>"
rs.movenext
wend
response.write "</table>"
end if
2006-09-21 14:11
cassy2002
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2005-7-29
收藏
得分:0 
对。是没有指针。谢谢啊
2006-09-21 21:43
cassy2002
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2005-7-29
收藏
得分:0 
以下是引用xiaojianxun在2006-9-21 13:36:48的发言:
给你点小小的建议,下拉列框可以用循环做,这样好管理的

怎么写。请老兄给个文件看看。

2006-09-21 21:46
cassy2002
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2005-7-29
收藏
得分:0 
以下是引用mai_25在2006-9-21 12:06:11的发言:
[attach]11978[/attach]
你自己看看吧

这个做得比我的功能强大多了。谢谢啊。学习学习

2006-09-21 22:00
xiaojianxun
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-8-18
收藏
得分:0 
<select name="banji">
<option value="班级" selected>班级</option>
<%for i=160 to 174 %>
<option value="<%=i%>"><%=i%></option>
<%next%>
</select>
2006-09-21 22:02
cassy2002
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2005-7-29
收藏
得分:0 
谢谢啊
2006-09-22 09:29
快速回复:[求助]成绩查询系统制作遇到问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029387 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved