📄 include_xj.asp
字号:
<table width=400 cellspacing=0 cellpadding=5>
<tr><td align=center>
<table width=180 cellspacing=0 cellpadding=2 bgcolor=#777777>
<tr bgcolor=#666666><td height=20>
<img src="pic/j1.gif"></td><td width=130 align=right><font color=#cccccc>新 进 站 点 </font></td></tr>
<%
sql="select top 10 * from lm where pass=true order by jointime desc"
set rs=conn.execute(sql)
if rs.eof and rs.bof then
response.write "数据丢失!"
else
do while not rs.eof
%>
<tr><td colspan=3> ※ <a href="cview.asp?url=<%=rs("username")%>" style="color:#cccccc" title=<%=rs("note")%> target="_blank"><%=rs("pagename")%></a></td></tr>
<%
rs.movenext
loop
end if
rs.close
%>
</table>
</td>
<td width=60></td>
<td align=center>
<table width=180 cellspacing=0 cellpadding=2 bgcolor=#777777>
<tr bgcolor=#666666><td height=25>
<img src="pic/j1.gif"></td><td width=130 align=right><font color=#cccccc>热 点 点 击 </font></td></tr>
<%
sql="select top 10 * from lm where pass=true order by hits desc"
set rs=conn.execute(sql)
if rs.eof and rs.bof then
response.write "数据丢失!"
else
do while not rs.eof
%>
<tr><td colspan=2> ※ <a href="cview.asp?url=<%=rs("username")%>" style="color:#cccccc" title=<%=rs("note")%> target="_blank"><%=rs("pagename")%></a><font color=#eeeeee> (<%=rs("hits")%>)</font></td></tr>
<%
rs.movenext
loop
end if
rs.close
%>
</table>
</td></tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -