📄 content.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!-- #include file="../Conn/conn.asp" -->
<% id=request.queryString("id") %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>公告信息</title>
</head>
<link rel="stylesheet" href="../css/style.css">
<body>
<% sql="select * from tb_PlacardMeg where ID="&id
rs.open sql,conn
while not rs.eof
%>
<form name="form1" method="post" action="">
<table width="506" height="439" border="0" align="center" cellpadding="3" cellspacing="5" class="wenbenkuang">
<tr>
<td height="34" colspan="4"><div align="center">具体公告信息</div></td>
</tr>
<tr valign="top" class="wenbenkuang">
<td width="80" height="42"><div align="right">公告标题:</div></td>
<td colspan="3"><%=rs("Title")%></td>
</tr>
<tr valign="top" class="wenbenkuang">
<td height="18"><div align="right">公告内容:</div></td>
<td colspan="3" rowspan="2"> <%=rs("Content")%></td>
</tr>
<tr valign="top" class="wenbenkuang">
<td height="276"> </td>
</tr>
<tr valign="top">
<td height="37" colspan="4"><div align="center"><br>
<a href="#" onClick="javascript:window.close();">【关闭窗口】</a>
</div></td>
</tr>
</table>
<div align="center">
<br>
</div>
</form>
<%
rs.movenext
wend
set rs=nothing
conn.close
set conn=nothing
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -