📄 confirm.asp
字号:
<!--#include file="../includes/db.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>办公自动化系统</title>
<%
call insureID()
if session("POSITION_ID")<>4 then
call noRight()
end if
%>
<style type="text/css">
<!--
.style1 {
color: #000000;
font-weight: bold;
}
-->
</style>
</head>
<body bgcolor="#FCFCFC" topmargin=0 leftmargin=0 rightmargin=0>
<center>
<table border="0" width="75%" height=50>
<tr>
<td width=width="75%" align=center></td>
</tr>
</table>
<%
sql="SELECT Clients_info.CLIENT_ID, Clients_info.COMPANY_NAME, Clients_info.SUBMIT_DATE, " _
&"Users_info.Name, Dept.Dept_name " _
&"FROM Clients_info INNER JOIN Users_info " _
&"ON Clients_info.User_id = Users_info.User_id INNER JOIN Dept " _
&"ON Users_info.DEPT_ID = Dept.DEPT_ID " _
&"WHERE (Dept.DEPT_ID = "&session("DEPT_ID")&") AND Clients_info.SUBMITED=1 AND Clients_info.CONFIRMED=0 "
call openDB()
rs.open sql,conn,1,1
%>
<table width="75%" border="0" cellpadding="0" cellspacing="1" bgcolor="#5A8BCE">
<tr bgcolor="#0000FF">
<td height="35" align=left bgcolor="#E6F7FF">
<div align="center"><span class="style1"><%=session("Dept_name")%>部门未审核的客户清单</span></div></td>
</tr>
</table>
<table width="75%" border="0" cellpadding="4" cellspacing="1" bordercolorlight="#C0C0C0" bordercolordark="#FFFFFF" bgcolor="#5A8BCE">
<tr>
<td width="30%" bgcolor="#FCFCFC">客户名</td>
<td width="25%" bgcolor="#FCFCFC">提交日期</td>
<td width="20%" bgcolor="#FCFCFC">添加人</td>
</tr>
<%
if rs.eof then
response.write "<tr><td width=""75%"" colspan=3 bgcolor=""#FCFCFC"" align=center>"
response.write "本部门暂时没有要审核的客户信息!"
response.write "</td></tr>"
end if
while not rs.eof
response.write "<tr bgcolor=""#FCFCFC"">"
response.write"<td width=""30%""><a href=""Read.asp?CLIENT_ID=" _
&rs("CLIENT_ID")&"&Submited=Submited&Confirmed=UnConfirmed&action=Confirm"">"&rs("COMPANY_NAME")&"</td>"
response.write"<td width=""25%"">"&rs("SUBMIT_DATE")&"</td>"
response.write"<td width=""20%"">"&rs("Name")&"</td>"
response.write "</tr>"
rs.movenext
wend
call closeDB()
%>
<tr>
<td width=width="75%" colspan=3 align=center bgcolor="#EFEFEF" height="50">[<a href="javascript:history.back()">返回</a>]</td>
</tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -