📄 announce.asp
字号:
<!--#include file="conn.asp"-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
<script language="JavaScript" src="js/title.js"></script>
<style type="text/css">
<!--
a { text-decoration: none; color: #003366 }
a:hover { text-decoration: underline }
td {
color: #000000;
font-size: 12px;
}
-->
</style>
</head>
<body leftmargin="0" topmargin="0">
<table width="100%" border="0" cellpadding="2" cellspacing="0" bgcolor="#efefef">
<tr>
<td width="4%" align="center"><img src="images/affiche.gif"></td>
<td width="96%"><marquee scrollamount="2" direction="left" scrolldelay="10" onmouseover='this.stop()' onmouseout='this.start()'>
<%
set rs=conn.Execute("select * from [affiche] order by id desc")
if rs.eof and rs.bof then
response.write "暂无任何公告!"
else
do while not rs.eof%>
<a href=javascript:void(0) onClick="javascript:open_win('affiche.asp#<%=rs("id")%>','',500,300,'no')"><%=rs("title")%></a> (<%=rs("posttime")%>)
<%
rs.MoveNext
loop
rs.Close
set rs=nothing
end if
%>
</marquee></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -