📄 announce.asp
字号:
<!--#include file="inc/config.asp" -->
<!--#include file="inc/conn.asp" -->
<html>
<head>
<title>商城公告</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel=stylesheet href='css/tx.css' type=text/css>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<p> </p>
<table width="500" border="0" cellspacing="1" cellpadding="0" align="center" bgcolor="#D2D2D2">
<%
dim id,rs
id=request.querystring("id")
set rs=conn.execute("select * from announce where id="&id)
%>
<tr>
<td height="30" bgcolor="#E3E3E3" align="center"><B><%=rs("title")%></B></td>
</tr>
<tr>
<td bgcolor="#F5F5F5"><p style="margin-top:5;margin-left:5;margin-bottom:5;margin-right:5;line-height:150%">
<%=rs("body")%></p>
</td>
</tr>
<tr>
<td height="25" align="right" bgcolor="#E7E7E7"><%=rs("intime")%> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -