⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 confirm.asp

📁 功能强大的网络办公系统 支持油箱管理,短消息,文件管理,考勤管理等功能
💻 ASP
字号:
<!--#include file="../includes/keepHouse.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>WebOffice</title>
<%
call insureID()
if session("POSITION_ID")<>4 then
	call noRight()
end if
%>
</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.CLIENT_ID, Clients.COMPANY_NAME, Clients.SUBMIT_DATE, " _ 
	&"Personnel.PERSON_NAME, Department.DEPARTMENT " _ 
	&"FROM Clients INNER JOIN Personnel " _ 
	&"ON Clients.PERSONNEL_ID = Personnel.PERSONNEL_ID INNER JOIN Department " _ 
	&"ON Personnel.DEPT_ID = Department.DEPT_ID " _ 
	&"WHERE (Department.DEPT_ID = "&session("DEPT_ID")&") AND Clients.SUBMITED=1 AND Clients.CONFIRMED=0 "
call openDB()
rs.open sql,conn,1,1
%>
<table border="0" width="75%" cellspacing="0" cellpadding="0">
 <tr>
  <td width="5%" bgcolor="#0000FF" height="35" align=left><img border="0" src="../images/back.gif"></td>
  <td width="65%" bgcolor="#0000FF" height="35" align=center>
  <b><font color="#FFFFFF"><%=session("DEPARTMENT")%>部门未审核的客户清单</font></b></td>
  <td width="5%" bgcolor="#0000FF" height="35" align=right><img border="0" src="../images/Close2.gif"></td>
 </tr>
</table>
<table border="1" width="75%" bordercolorlight="#C0C0C0" bordercolordark="#FFFFFF" cellspacing="0" cellpadding="0">   
   <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>"
		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("PERSON_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 + -