📄 annoview.asp
字号:
<!--#include file="conn.asp" -->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<TITLE>办公自动化系统</TITLE>
<link href="skins/css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<%
id=request.QueryString("ID")
sql="select * from [announce]"
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,1,1
if not rs.eof then
title=rs("title")
content=rs("content")
end if
rs.close
%>
<table border="0" cellpadding="3" cellspacing="1" width="100%" align=center>
<tr>
<th>公告查看</th>
</tr>
<tr>
<td align="center" class="title"><%=title%></td>
</tr>
<tr>
<td height="23" class="td2"><%=content%></td>
</tr>
<tr>
<th style="text-align:center;"><input name="submit" type=button onClick="history.go(-1)" class="button" value="返回"></th>
</tr>
</table>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -