计算机应用 | 古代文学 | 市场营销 | 生命科学 | 交通物流 | 财务管理 | 历史学 | 毕业 | 哲学 | 政治 | 财税 | 经济 | 金融 | 审计 | 法学 | 护理学 | 国际经济与贸易
计算机软件 | 新闻传播 | 电子商务 | 土木工程 | 临床医学 | 旅游管理 | 建筑学 | 文学 | 化学 | 数学 | 物理 | 地理 | 理工 | 生命 | 文化 | 企业管理 | 电子信息工程
计算机网络 | 语言文学 | 信息安全 | 工程力学 | 工商管理 | 经济管理 | 计算机 | 机电 | 材料 | 医学 | 药学 | 会计 | 硕士 | 法律 | MBA
现当代文学 | 英美文学 | 通讯工程 | 网络工程 | 行政管理 | 公共管理 | 自动化 | 艺术 | 音乐 | 舞蹈 | 美术 | 本科 | 教育 | 英语 |

学生管理系统毕业论文(一)毕业论文(2)

2013-07-30 01:03
导读:td width="107" align="center"%=rs("user_testnumber")%/td td width="108" align="center"%=rs("user_name")%/td td width="108" align="center"%=rs("user_class")%/td td width="108" align="center"%=rs("testn
<td width="107" align="center"><%=rs("user_testnumber")%></td>
<td width="108" align="center"><%=rs("user_name")%></td>
<td width="108" align="center"><%=rs("user_class")%></td>
<td width="108" align="center"><%=rs("testno")%></td>
<td width="108" align="center"><%=rs("subject")%></td>
<%if rs("cj")>=60 then%>
<td width="46" align="center"><%=rs("cj")%></td>
<%else%>
<td width="46" align="center"><font color=red><%=rs("ach")%></font></td>
<%end if%>
</tr>
<%     rs.movenext
if rs.eof then exit for
next
else
response.write "<tr><td colspan=13><marquee scrolldelay=120 behavior=alternate>没有找到任何记录!!!</marquee></td></tr>"
end if
rs.close
set rs=nothing
%>
</table>
</table>
</div>
<table width="748" border="0" align="center">
<tr>
<td height="17">

<div align="right">
<input type="hidden" name="page" value="<%=NoncePage%>">
<%
if NoncePage>1 then
response.write "|<a href=ach_top_1.asp?page=1>首 页</a>| |<a href=ach_top_1?page="&NoncePage-1&">上一页</a>|&nbsp"
else
response.write "|首 页| |上一页|&nbsp"
end if
if Cint(Trim(NoncePage))<Cint(Trim(NumPage)) then
response.write "|<a href=ach_top_1?page="&NoncePage+1&">下一页</a>| |<a href=ach_top_1?page="&NumPage&">尾 页</a>|"
else
response.write "|下一页| |尾 页|"
end if
%>
&nbsp;页次:<font color="#0033CC"><%=NoncePage%></font>/<font color="#0033CC"><%=NumPage%></font>

中国大学排名


共<font color="#0033CC"><%=NumRecord%></font>条记录&nbsp; </div>
</td>
</table>
</center>
</div>
</body>
</html>
⑶总成绩总体排名
总体排名和单课排名的代码相似。限于篇幅问题,不做详细论述。
3班级管理
班级管理的添加和修改.删除模块功能基本与前面所讲的相似.所以不用再讨论了。
4科目管理
在这里也不用在细说了。
5连接数据库
数据库连接文件data.asp
<%
set conn=server.createobject("adodb.connection")
dbpath=server.mappath("db1.mdb")
conn.open "driver={microsoft access driver (*.mdb)};dbq="& dbpath
%>
6设置权限文件   
                       权限文件 user.asp

<%
if session("user")="" then
 response.write "您无此权限"
 response.end
end if
%>
第六章 测试与维护
6.1 测试方法
通过打开主页面“index.asp”选择要用的权限进入。如点进入“学生查询系统”则是通过姓名和学号来查询学生信息。如果点“进入管理页面”则可以进行信息的管理的高级权限.
6.2 系统维护
作为一个程序,系统的性能优化和维护是非常必要的。尤其是很Internet有关的程序,如ASP程序,制约起性能的因素很多,如Web服务器、TCP/IP网络和数据库服务等。这些大多与硬件有关。在软件上,好的程序设计方法和正确参数配置也可以提高程序的性能,有时在同等情况下只要改变一个参数,程序执行效率就能大大提高。
ASP程序运行的性能主要取决与以下两个大方面:
HTML的页面执行的效率
反应时间 (科教作文网http://zw.ΝsΕAc.Com编辑整理)
6.2.1提高HTML的页面执行效率
提高HTML的页面执行效率主要从以下几个方面:
图象因素
框架因素
表格因素
避免使用长文件名
其他优化方法
6.2.2加快反应时间
反应时间主要受制与下面两个要素
ASP执行页面效率
1提高ASP页面执行效率
⑴把对象变量转换成本地变量
⑵使用完毕后及时释放对象
⑶声明VBScrpt变量
⑷对URL地址进行编码
⑸With….End  with语句的使用
⑹使用字符串建立SQL查询
⑺不要轻易使用ASP事务
⑻使用response.write()函数
⑼使用case语句进行条件选择
数据库因素
数据库优化
⑴对connection的优化
⑵对command的优化
⑶对Recordset对象的优化
       

上一篇:asp图书管理系统+论文+开题+PPT(一)毕业 下一篇:没有了