📄 browse.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>
<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"><%=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="45%">标题</td>
<td width="20%">撰写时间</td>
<td width="10%"> 删除</td>
</tr>
<%
sql="SELECT * FROM PersonalNotes WHERE PERSONNEL_ID="&session("PERSONNEL_ID")&" " _
&"ORDER BY COMPOSE_DATE DESC"
call openDB()
rs.open sql,conn,1,1
if rs.eof then
response.write "<tr><td width=""75%"" colspan=3 align=center>"
response.write "你的记事本是空的."
response.write "</tr></td>"
end if
while not rs.eof
response.write "<tr>"
response.write "<td width=""45%""><a href=""Read.asp?NOTE_ID="&rs("NOTE_ID")&""">"&rs("NOTE_TITLE")&"</a></td>"
response.write "<td width=""20%"">"&rs("COMPOSE_DATE")&"</td>"
response.write "<td width=""10%""><a href=""saveCED.asp?NOTE_ID="&rs("NOTE_ID")&"&action=Delete"">删除</a></td>"
response.write "</tr>"
rs.MoveNext
wend
call closeDB()
%>
<tr>
<td width="75%" bgcolor="#EFEFEF" height="50" colspan="3" align=center>
[<a href="javaScript:history.back()">返回</a>]
[<a href="Compose.asp">撰写新记录</a>]
</td>
</tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -