📄 picnews.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="config.asp"-->
<!--#include file="char.inc"-->
<!--#include file="function.asp"-->
<%
dim shu,news,bigclassid,smallclassid,typeid,specialid,order,time,path,click,title
bigclassid=ChkRequest(request.querystring("bigclassid"), 1)
typeid=ChkRequest(request.querystring("typeid"), 1)
smallclassid=ChkRequest(request.querystring("smallclassid"), 1)
specialid=ChkRequest(request.querystring("specialid"), 1)
shu=ChkRequest(request.querystring("shu"), 1)
order=checkstr(request("order"))
time=checkstr(request.querystring("time"))
title=ChkRequest(request.querystring("title"), 1)
click=checkstr(request.querystring("click"))
Path = "./"
if shu<>"" then '显示数目,不加为10
ss=shu
else
ss=10
end if
if order="click" then '排序方式,click为按点击率
oo="click"
else
oo="newsid"
end if
if time="0" then '显示时间,0为不显示
tt=0
else
tt=1
end if
if click="0" then '显示点击数,0为不显示
cc=0
else
cc=1
end if
if title<>0 then '显示数目,不加为10
nn=Int(title)
else
nn=10
end if
if typeid<>"" then
set rs=conn.execute("SELECT top "&ss&" * FROM "& db_News_Table &" where typeid="& Int(typeid) &" and checkked=1 order by "&oo&" desc")
else
if bigclassid<>"" then
set rs=conn.execute("SELECT top "&ss&" * FROM "& db_News_Table &" where bigclassid="& Int(bigclassid) &" and checkked=1 order by "&oo&" desc")
else
if smallclassid<>"" then
set rs=conn.execute("SELECT top "&ss&" * FROM "& db_News_Table &" where smallclassid="& Int(smallclassid) &" and checkked=1 order by "&oo&" desc")
else
if specialid<>"" then
set rs=conn.execute("SELECT top "&ss&" * FROM "& db_News_Table &" where specialid="& Int(specialid) &" and checkked=1 order by "&oo&" desc")
else
set rs=conn.execute("SELECT top "&ss&" * FROM "& db_News_Table &" where checkked=1 order by "&oo&" desc")
end if
end if
end if
end if
if rs.eof and rs.bof then %>
document.write('<div align="center">没有</div>');
<% else %>
document.write('<table border=0 cellpadding=0 cellspacing=3 width=88 height=120 ><tr>');
<%do while not rs.eof
if (rs("picnews"))=1 then
fileExt=lcase(getFileExtName(rs("picname")))
title=htmlencode4(trim(rs("title")))
%>
document.write('<td align=center><A class=class href="<%=path%>Article.asp?NewsID=<%=rs("NewsID")%>" title="<%=title%>" target="_blank"><img width="160" height="120" src="<%=FileUploadPath%><%=rs("picname")%>" border=0><br><%=CutStr(title,nn)%></A></td>');
<%else
fileExt=lcase(getFileExtName(rs("picname")))
title=trim(rs("title"))
title=replace(title,"<br>","")%>
document.write('<td align=center><A class=class href="<%=path%>Article.asp?NewsID=<%=rs("NewsID")%>" title="<%=title%>" target="_blank"><img width="160" height="120" src="IMAGES/flashorno.gif" border=0><br><%=CutStr(title,nn)%></A></td>');
<%end if
rs.movenext
loop
%>
document.write('</tr>');
<%end if
Rs.Close
set Rs=nothing
%>
<%
function getFileExtName(fileName)
dim pos
pos=instrrev(filename,".")
if pos>0 then
getFileExtName=mid(fileName,pos+1)
else
getFileExtName=""
end if
end function
%>
document.write('</table>');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -