📄 zimu.asp
字号:
<!--#include file="odbc_connection.asp"-->
<% strsql="select top 3 * from news order by id desc"
set rs=db.execute(strsql)
if rs.eof then
judge="<p align=center>目前没有公告"
end if
%>
<% do while NOt rs.eof
judge=judge&"<p align=center>" & rs("title")
judge=judge&"<p align=left>" &rs("body")
judge=judge&"<p align=right>" &rs("person")&"<br>"&rs("submit_date")
rs.movenext
Loop
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<link href="wangye9pt.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
color: #000000;
text-decoration: none;
}
a:hover {
color: #0033CC;
text-decoration: none;
}
a:active {
color: #0033CC;
text-decoration: none;
}
-->
</style></head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" class="w9pt">
<tr>
<td><MARQUEE onmouseover=stop() onmouseout=start() scrollAmount=2
scrollDelay=100 direction=up width="100%" height="100%" border="0" style="cursor:hand"><a href="#">
<%=judge%></a>
</MARQUEE></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -