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

📄 browse.asp

📁 功能强大的办公自动化系统 具有前后台管理系统 具有很好的应用性
💻 ASP
字号:
<!--#include file="../../includes/keepHouse.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>WebOffice</title>
<%
call insureID()
%>
</head>

<body >
<center>
<table border="0" width="100%" height="50" cellspacing="0" cellpadding="0">
 <tr>
  <td width="100%"></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">公司通知</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="55%" bgcolor="#FCFCFC">题目</td>
<td width="20%" bgcolor="#FCFCFC">发布日期</td>
</tr>
<%
dim NOTICE_TITLE
sql="SELECT * FROM CompanyNotice " _
	&"ORDER BY COMPOSE_DATE DESC "
call openDB()
rs.open sql,conn,1,1
if rs.eof then
	response.write "<tr><td width=""75%"" colspan=2>"
	response.write "还没有任何公司决策。"
	response.write "</td></tr>"
end if
while not rs.eof
	NOTICE_TITLE=rs("NOTICE_TITLE")
	NOTICE_TITLE=replaceBack(NOTICE_TITLE)
	response.write"<tr>"
	response.write"<td width=""55%"" bgcolor=""#FCFCFC""><a href=Read.asp?NOTICE_ID="&rs("NOTICE_ID")&">" _
	&NOTICE_TITLE&"</a></td>"
	response.write"<td width=""20%"" bgcolor=""#FCFCFC"">"&rs("COMPOSE_DATE")&"</td>"
	response.write"</tr>"
	rs.MoveNext
wend
%>
<tr>
<td width=width="75%" colspan=2 height="50" bgcolor="#EFEFEF" align=center>
[<a href="javascript:history.back()">返回</a>]   
<%
if session("POSITION_ID")<4 then
	response.write"&nbsp;&nbsp;[<a href=""Compose.asp"">撰写通知</a>]"
end if
call closeDB()
%>
</td>
</tr>
</table>
</center>
</body>

⌨️ 快捷键说明

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