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

📄 read.asp

📁 ASp+SQLServer编写的网上办公系统
💻 ASP
字号:
<!--#include file="../../includes/keepHouse.asp"-->
<%
call insureID()
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>WebOffice</title>
</head>
<body>
<center>
<%
dim SUBMITED
dim SUMMPLAN_ID
dim SUMMPLAN_TITLE
dim SUMM_CONTENT
dim PLAN_CONTENT
dim POSTIL_CONTENT
SUMMPLAN_ID=request("SUMMPLAN_ID")
if SUMMPLAN_ID="" then
	call trigErr()
end if
sql="SELECT * FROM PersonalSummPlan WHERE SUMMPLAN_ID= "&SUMMPLAN_ID&" AND PERSONNEL_ID="&session("PERSONNEL_ID")
call openDB()
rs.open sql,conn,1,1
SUBMITED=rs("SUBMITED")
POSTILED=rs("POSTILED")
SUMMPLAN_ID=rs("SUMMPLAN_ID")
SUMMPLAN_TITLE=rs("SUMMPLAN_TITLE")
SUMM_CONTENT=rs("SUMM_CONTENT")
PLAN_CONTENT=rs("PLAN_CONTENT")
SUMMPLAN_TITLE = replaceBack(SUMMPLAN_TITLE)
SUMM_CONTENT=replaceBack(SUMM_CONTENT)
PLAN_CONTENT=replaceBack(PLAN_CONTENT)
if POSTILED=1 then
	POSTIL_CONTENT=rs("POSTIL_CONTENT")
	POSTIL_CONTENT=replaceBack(POSTIL_CONTENT)
end if
call closeDB()
%>
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="50">
 <tr>
  <td width="100%">&nbsp;</td>
 </tr>
</table>
<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="139" bgcolor="#FCFCFC"> 标题:</td>
  <td width="443" bgcolor="#FCFCFC"><%=SUMMPLAN_TITLE%>
  </td>
 </tr>
 <tr> 
  <td bgcolor="#FCFCFC" width="140">总结:
  </td> 
  <td bgcolor="#FCFCFC" width="444"><%=SUMM_CONTENT%>
  </td> 
 </tr>
 <tr> 
  <td bgcolor="#FCFCFC" width="140">计划:
  </td> 
  <td bgcolor="#FCFCFC" width="444"><%=PLAN_CONTENT%>
  </td>
 </tr>
 <%if POSTILED=1 then%>
  <tr> 
  <td bgcolor="#FCFCFC" width="140">上司批示:
  </td> 
  <td bgcolor="#FCFCFC" width="444"><%=POSTIL_CONTENT%>
  </td>
 </tr>
 <%end if%>
 <tr> 
  <td width="584" bgcolor="#EFEFEF" colspan="2" height="50" align=center>
  <%
 	if SUBMITED=0 then
 		if session("POSITION_ID")<>1 then
	 		response.write "[<a href=""saveCEPS.asp?SUMMPLAN_ID="&SUMMPLAN_ID&"&action=Submit"">提交上司</a>]"
	 	end if
 		response.write "&nbsp;&nbsp;"
 		response.write "[<a href=""Edit.asp?SUMMPLAN_ID="&SUMMPLAN_ID&""">编辑</a>]&nbsp;&nbsp;"
 	end if
  %>
  [<a href="javascript:history.back()">返回</a>]
  </td>
 </tr>
</table>
</center>
</body>
</html>

⌨️ 快捷键说明

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