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

📄 browse.asp

📁 功能强大的办公自动化系统 具有前后台管理系统 具有很好的应用性
💻 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()
%>
</head>

<body topmargin=0 leftmargin=0 rightmargin=0>
<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("PERSON_NAME")&"的"%>个人总结</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="35%">题 目</td>
  <td width="15%">撰写日期</td>
  <td width="15%">提交日期</td>
  <td width="15%">审核日期</td>
 </tr>
<%
sql="SELECT * FROM PersonalSummPlan WHERE PERSONNEL_ID="&session("PERSONNEL_ID")
call openDB()
rs.open sql,conn,1,1
if rs.eof then
	response.write "<tr><td width=""75%"" colspan=""4""  align=center>"
	response.write "您还没有任何个人总结或计划"
	response.write "</td></tr>"
end if
while not rs.eof
	SUMMPLAN_TITLE=rs("SUMMPLAN_TITLE")
	SUMMPLAN_TITLE=replaceBack(SUMMPLAN_TITLE)
	response.write "<tr>"
	response.write "<td width=""35%""><a href=""Read.asp?SUMMPLAN_ID="&rs("SUMMPLAN_ID") _
	&""">"&SUMMPLAN_TITLE&"</a></td>"
	response.write "<td width=""15%"">"&rs("COMPOSE_DATE")&"</td>"
	response.write "<td width=""15%"">"
	if session("POSITION_ID")=1 then
		response.write"--无需--"
	else
		if rs("SUBMITED")=0 then
			response.write "未提交"
		else
			response.write rs("SUBMIT_DATE")
		end if
	end if
	response.write "</td>"
	response.write "<td width=""15%"">"
	if session("POSITION_ID")=1 then
		response.write"--无需--"
	else
		if rs("POSTILED")=0 then
			response.write "未审核"
		else
			response.write rs("POSTIL_DATE")
		end if
	end if
	response.write "</td>"
	response.write "</tr>"
	rs.movenext
wend
call closeDB()
%>
 <tr>
  <td width="75%" colspan="4" height="50" bgcolor="#EFEFEF" align=center>
  [<a href="Compose.asp">撰写新项</a>]&nbsp;&nbsp;&nbsp;
  [<a href="chooseAction.asp">返回</a>]
  </td>
 </tr>
</table>
</center>
</body>
</html>

⌨️ 快捷键说明

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