📄 search_result_more.asp
字号:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="936"%>
<!--#include file="verifyTeacher.asp"-->
<%
var i;
var j;
var PostWord;
PostWord=Request.QueryString("Method");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>查找结果显示</title>
<!--#include file="link.asp"-->
<style type="text/css">
body{text-align:center;}
</style>
</head>
<body>
<!--#include file="top.asp"-->
<%
Response.Write("<table border='1' width='760' cellPadding=0 cellSpacing=0 bgcolor='#FFCCFF' borderColor='#111111' borderColorDark=#0072b3 borderColorLight=#0072b3 style='BORDER-COLLAPSE: collapse'>");
Response.Write("<tr>");
Response.Write("<td width='50' height='20'><div align=center><font size='2' color='#ff0000'>序号</font></div></td>");
for(i=0;i<=Session("StudentRs").Fields.Count-1;i++)
{
Response.Write("<td width='150' height='20'><div align=center><font size='2' color='#ff0000'>"+Session("StudentRs")(i).Name+"</font></div></td>");
}
Response.Write("<td width='110' height='20'>"+"<div align=center><font size='2' color='#ff0000'>数据操作</font></div>"+"</td>");
Response.Write("</tr>");
if(PostWord="Previous")
{
for(i=1;i<=Session("flag")*2;i++)
{
Session("StudentRs").MovePrevious;
if(Session("StudentRs").BOF)
{
Session("StudentRs").MoveNext;
break;
}
}
}
Session("start")=Session("StudentRs").AbsolutePosition;
for(j=0;j<=Session("flag")-1;j++)
{
Response.Write("<tr bgcolor='#ffffff'>");
Response.Write("<td width='50' height='20'><div align=center><font size='2'>"+Session("StudentRs").AbsolutePosition+"</font></div></td>");
Session("end")=Session("StudentRs").AbsolutePosition;
for(i=0;i<=Session("StudentRs").Fields.Count-1;i++)
{
Response.Write("<td width='150' height='20'><div align=center><font size='2'>"+Session("StudentRs")(i).Value+"</font></div></td>");
}
Response.Write("<td width='110' height='20'><div align=center><a target='_blank' href='student_inf_show.asp?studentmessage="+Session("StudentRs")(0).Value+"'><font size='2'>详情</font></a><font size='2'>||</font><a target='_blank' href='search_score_result.asp?studentmessage="+Session("StudentRs")(0).Value+"'><font size='2'>成绩</font></a></div></td>");
Response.Write("</tr>");
Session("StudentRs").MoveNext;
if(Session("StudentRs").EOF)
{
Session("StudentRs").MovePrevious;
break;
}
}
Response.Write("<tr>");
Response.Write("<td width='760' colspan='6' height='20'>");
Response.Write("</td>");
Response.Write("</tr>");
Response.Write("</table>");
%>
<!--#include file="turn_pages.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -