📄 show_news.asp
字号:
<!--#include file=conn.asp-->
<%
sql="select * from news order by id desc"
set rs=conn.execute(sql)
%>
<HTML>
<HEAD>
<TITLE>新闻更新</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<style>
<!--
.opacity {COLOR: #ff9900; FILTER: alpha(opacity=100)}
A {text-decoration: none; color:#B08291; font-family: "宋体"; font-size: 9pt}
A:hover {text-decoration:line-through; color: #B08291}
table,td,body { color:#999999;font:9pt "宋体" }
.td{font:9pt "宋体";line-height:150%}
-->
</style>
</HEAD>
<BODY BGCOLOR=#FFFFFF leftmargin="0" topmargin="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="td" valign="top">
<%do while not rs.eof%>
<p><font color="#B08291">++++----------<%=rs("sj")%>---------++++</font><br>
<%=rs("content")%>...</p>
<%
rs.movenext
count=count-1
loop
%>
</td>
</tr>
</table>
</BODY>
</HTML>
<%
rs.close
set rs=nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -