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

📄 confirm.asp

📁 ASp+SQLServer编写的网上办公系统
💻 ASP
字号:
<!--#include file="../includes/keepHouse.asp"-->
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<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>
<table border="0" width="100%" height="50" cellspacing="0" cellpadding="0">
 <tr>
  <td width="100%"></td>
 </tr>
</table>
<center>
<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="20%" bgcolor="#FCFCFC">撰写日期/发布日期</td>
<td width="10%" bgcolor="#FCFCFC">有否审核</td>
<td width="15%" bgcolor="#FCFCFC">撰写人</td>
</tr>
<%
dim DECISION_TITLE
sql="SELECT DeptDecision.DECISION_TITLE, DeptDecision.DECISION_ID, DeptDecision.COMPOSE_DATE, " _
	&"DeptDecision.CONFIRMED, DeptDecision.CONFIRM_DATE, Personnel.PERSON_NAME AS Composer " _
	&"FROM DeptDecision INNER JOIN " _
	&"Personnel ON DeptDecision.PERSONNEL_ID = Personnel.PERSONNEL_ID " _
	&"WHERE DeptDecision.CONFIRMED=0 "
call openDB()
rs.open sql,conn
if rs.eof then
	response.write "<tr><td width=""75%"" colspan=4 bgcolor=""#FCFCFC"" align=center>"
	response.write "暂时没有任何未审的部门决策。"
	response.write "</td></tr>"
else
	DECISION_TITLE=rs("DECISION_TITLE")
	DECISION_TITLE=replaceBack(DECISION_TITLE)
end if
while not rs.eof
	response.write"<tr>"
	response.write"<td width=""30%""><a href=Read.asp?DECISION_ID="&rs("DECISION_ID")&">" _
	&DECISION_TITLE&"</a></td>"
	response.write "<td width=""20%"">"&rs("COMPOSE_DATE")&"/"
	response.write "无</td>"
	response.write "<td width=""10%""><font color=""#FF0000"">未审</font></td>"
	response.write "<td width=""15%"">"&rs("Composer")&"</td>"
	response.write "</tr>"
	rs.MoveNext
wend
call closeDB()
%>
<tr>
<td width="75%" height="50" colspan=4 bgcolor="#EFEFEF" align=center>
[<a href="javaScript:history.back()">返回</a>]</td>
</tr>
</table>
</center>
</body>
</html>



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -