📄 wenjlb.asp
字号:
<!--#include file="global.asp"-->
<%if session("yonghm")<>"" then%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>学生信息列表</title>
<link rel="stylesheet" type="text/css" href="Admin_Style.css">
<base target="_self">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="background-color: #555555">
<form name="myform" method="POST" action=<%=strFileName%> onsubmit="return ConfirmDel();">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" class="border">
<tr>
<td height="22" colspan="2" align="center" class="title" style="background-image: url('images/topBar_bg.gif')"><strong>任
务 栏</strong></td>
</tr>
<tr class="tdbg">
<td width="70" height="30"><strong>管理导航:</strong></td>
<td height="30">学生信息 </td>
</tr>
</table>
<%
sql="select * from xuesxxb order by xuh "
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
%>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" Class="border">
<tr class="title" >
<td width="60" height="22" align="center" style="background-image: url('images/topBar_bg.gif')" ><strong>序号</strong></td>
<td width="100" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>日期</strong></td>
<td width="80" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>姓名</strong></td>
<td width="60" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>性别</strong></td>
<td width="80" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>家长姓名</strong></td>
<td width="100" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>电话</strong></td>
<td width="80" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>电子邮件</strong></td>
<td width="80" height="22" align="center" style="background-image: url('images/topBar_bg.gif')"><strong>报名情况</strong></td>
</tr>
<%
if not(rs.bof and rs.eof) then
do while not rs.eof
%>
<tr class="tdbg" onmouseout="this.style.backgroundColor=''" onmouseover="this.style.backgroundColor='#cccccc'" style="padding: 0px 2px;">
<td><a href="weixzt.asp?ID=<%=rs("xuh")%>" title="55"><%=rs("xuh")%></a></td>
<td align="center" >
<%=rs("riq")%> </td>
<td align="center" >
<%=rs("name")%> </td>
<td align="center"><%=rs("xingb")%></td>
<td align="center"><%=rs("jiazxm")%></td>
<td align="center"><%=rs("dianh")%></td>
<td align="center"><%=rs("dianzyj")%></td>
<td align="center"><%=rs("baomqk")%></td>
</tr>
<%
rs.movenext
loop
end if
%>
</table>
</form>
<p class="border">
<% else %>
<P><a href="Admin_Login.asp" target="_top">请登录</a> </p>
<%end if %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -