📄 owen2.asp
字号:
<head><base target="_blank"></head>
<style type="text/css">
<!--
.STYLE1 {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
color: #758F25;
}
body {
background-color:transparent;
}
a:link { text-decoration: none;color: #758F25;}
a:active { text-decoration: none;color: #758F25; }
a:visited { text-decoration: none;color: #758F25; }
-->
</style>
<span class="STYLE1">
<!--#include file="conn.asp"-->
<%
bigclass=trim(request.QueryString("title"))
n=request("n")
if n="" then
n=10
end if
%>
<%
if session("name")="" then
%>
<img src="images/topic_locked.gif" width="18" height="18" />
<%
response.Write("你还没有登陆或注册,无法查看最新下载信息,请登陆或注册后查看")
else
if bigclass<>"" then
sql="select * from downloads where bigclassname='"&bigclass&"' order by bh desc"
set rs=conn.execute(sql)
do while not rs.eof%>
<img src="images/topic_no_new.gif" width="18" height="18" /><a href="admin/downloads/<%=rs("bh")%>.html">
<%response.write(""&rs("name")&".<br>")%>
</a>
<% n=n-1
if n<1 then exit do
rs.movenext
loop
rs.close
set rs=nothing
end if
end if
%>
</span>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -