?? browse.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" [<a href=""Compose.asp"">撰寫通知</a>]"
end if
call closeDB()
%>
</td>
</tr>
</table>
</center>
</body>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -