📄 bookmngwait.asp
字号:
<!--#include file="../conndb.asp"-->
<!--#include file="isAdmin.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>报名管理</title>
<link href="../style.css" rel="stylesheet">
<script language="javascript">
function newwin(url) {
var oth="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=200,top=200";
oth = oth+",width=620,height=430";
var newwin=window.open(url,"newwin",oth);
newwin.focus();
return false;
}
</script>
</head>
<body link="#000080" vlink="#080080">
<form id="form1" name="form1" method="POST">
<%
Dim rs
Set rs = Server.CreateObject("ADODB.RecordSet")
'显示未处理的报名信息
sql = "SELECT b.*, l.LineName FROM Book b, Line l WHERE b.flag=0 And b.LineId=l.LineId ORDER BY b.BookId DESC"
rs.Open sql, Conn, 1, 1
%>
<p align=center><font style='FONT-SIZE:12pt' color="#000080"><b>未处理的报名信息</b></font></p>
<table align=center border="1" cellspacing="0" width="100%" bordercolorlight="#4DA6FF" bordercolordark="#ECF5FF">
<tr>
<td width="12%" align="center" bgcolor="#BEDCFA"><strong>报名日期</strong></td>
<td width="40%" align="center" bgcolor="#BEDCFA"><strong>线路名称</strong></td>
<td width="16%" align="center" bgcolor="#BEDCFA"><strong>报名人</strong></td>
<td width="18%" align="center" bgcolor="#BEDCFA"><strong>联系方式</strong></td>
<td width="12%" align="center" bgcolor="#BEDCFA"><strong>操作</strong></td>
</tr>
<%
Do While Not rs.Eof
%>
<tr>
<td align="center"><%=rs("PostDate")%></td>
<td><a href="/travel/LineView.asp?lid=<%=rs("LineId")%>" target="_blank">
<%=rs("LineName")%></a></td>
<td align="center"><a href="BookView.asp?bid=<%=rs("BookId")%>" onclick="return newwin(this.href)">
<%=rs("BookPerson")%></a></td>
<td align="center"><%=rs("Telephone")%> <%=rs("Mobile")%></td>
<td align="center"><a href="BookDeal.asp?bid=<%=rs("BookId")%>" onclick="return newwin(this.href)">
处理</a></td>
</tr>
<%
rs.MoveNext()
Loop
rs.Close
%>
</table>
<p align="center">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -