📄 news.asp
字号:
javastr=""
javastr=javastr+"<table width=\"100%\" border=\"0\" class=\"p1\">"
<!--#include file="const.asp"-->
<!--#include file="articleconn.asp"-->
<%newstype=request("typeid")
n=request("n")
if n="" then
n=7
end if%>
<%
if newstype<> "" then
sql="select * from article where shenghe='已审' and typeid="+cstr(newstype)+" order by dateandtime desc"
set rs=conn.execute(sql)%>
<%
do while not rs.eof
%>
javastr=javastr+"<tr><td class=\"p1\">"
javastr=javastr+"<IMG src=images/no.gif> <a href=\"<%=fly_userurl%>/openarticle.asp?id=<%=rs("newsid")%>\") target=\"_blank\"><%=left(rs("title"),10)%></font></a>"
javastr=javastr+"</td></tr>"
<%n=n-1
if n<1 then exit do
rs.movenext
loop
%>
javastr=javastr+"</table>"
<%rs.close
set rs=nothing
conn.close
set conn=nothing%>
document.write (javastr)
<%else%>
<%
sql="select * from article where shenghe='已审' order by dateandtime desc"
set rs=conn.execute(sql)
%>
<%
do while not rs.eof
%>
javastr=javastr+"<tr><td class=\"p1\">"
javastr=javastr+"<FONT color=#993300>- <a href=\"<%=fly_userurl%>/openarticle.asp?id=<%=rs("newsid")%>\") target=\"_blank\" ><font color=\"#993300\"><%=left(rs("title"),10)%></font></a>"
javastr=javastr+"</td></tr>"
<%n=n-1
if n<1 then exit do
rs.movenext
loop
%>
javastr=javastr+"</table>"
<%rs.close
set rs=nothing
conn.close
set conn=nothing%>
document.write (javastr)
<%end if%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -