<%' call ShowSpecial_xx(5) %>
<%
sql="select top 4 A.ArticleID,A.ClassID,C.ClassName,A.Title,A.Keyword,A.Author,A.CopyFrom,A.UpdateTime,A.Editor,A.Hits,A.OnTop,A.Hot,A.Elite,A.Passed,A.IncludePic,A.Stars,A.PaginationType,A.ReadLevel,A.ReadPoint from Article A inner join ArticleClass C on A.ClassID=C.ClassID where A.Deleted=0 and ParentID!=42 and A.ClassID in (7,8,9,10,11) order by A.ArticleID desc"
rsArticle.open sql,conn,1,1
if rsArticle.bof and rsArticle.eof then
response.write "没有任何文章"
else
do while not rsArticle.eof
%>
|
|
<%
rsArticle.movenext
loop
end if
rsArticle.close
%>
|