<%@language=vbscript codepage=936 %> <% option explicit response.buffer=true Const PurviewLevel=2 Const CheckChannelID=2 Const PurviewLevel_Article=1 %> <% dim strFileName,FileName const MaxPerPage=20 dim totalPut,CurrentPage,TotalPages dim i,j dim keyword,strField dim sql,rsArticleList dim ClassID dim strAdmin,arrAdmin dim tClass,ClassName,RootID,ParentID,Depth,ParentPath,Child,ChildID,tID,tChild,ClassMaster dim ManageType ManageType=trim(request("ManageType")) FileName="Admin_ArticleRecyclebin.asp" ClassID=Trim(request("ClassID")) keyword=trim(request("keyword")) if keyword<>"" then keyword=ReplaceBadChar(keyword) end if strField=trim(request("Field")) if ClassID="" then ClassID=0 else ClassID=CLng(ClassID) end if if ClassID>0 then set tClass=conn.execute("select ClassName,RootID,ParentID,Depth,ParentPath,Child,ClassMaster From ArticleClass where ClassID=" & ClassID) if tClass.bof and tClass.eof then founderr=True ErrMsg=ErrMsg & "
  • 找不到指定的栏目
  • " Call WriteErrMsg() response.end else ClassName=tClass(0) RootID=tClass(1) ParentID=tClass(2) Depth=tClass(3) ParentPath=tClass(4) Child=tClass(5) end if end if strFileName=FileName & "?ClassID=" & ClassID & "&strField=" & strField & "&keyword=" & keyword if request("page")<>"" then currentPage=cint(request("page")) else currentPage=1 end if %> 回收站管理
    回 收 站 管 理
    管理导航: 回收站管理首页 | 清空回收站 | 还原回收站中的所有文章

    <%call Admin_ShowRootClass()%>

    <%call Admin_ShowPath("回收站管理")%>
    <% sql="select Article.ArticleID,Article.ClassID,ArticleClass.ClassName,Article.Title,Article.Key,Article.Author,Article.CopyFrom,Article.UpdateTime,Article.Editor," sql=sql & "Article.Hits,Article.OnTop,Article.Hot,Article.Elite,Article.Passed,Article.IncludePic,Article.Stars,Article.PaginationType,Article.ReadLevel,Article.ReadPoint from article" sql=sql & " inner join ArticleClass on Article.ClassID=ArticleClass.ClassID where Article.Deleted=True " if ClassID>0 then if Child>0 then ChildID="" set tClass=conn.execute("select ClassID from ArticleClass where ParentPath like '" & ParentPath & "," & ClassID & "%'") do while not tClass.eof if ChildID="" then ChildID=tClass(0) else ChildID=ChildID & "," & tClass(0) end if tClass.movenext loop sql=sql & " and Article.ClassID in (" & ChildID & ")" else sql=sql & " and Article.ClassID=" & ClassID end if end if if keyword<>"" then select case strField case "Title" sql=sql & " and Title like '%" & keyword & "%' " case "Content" sql=sql & " and Content like '%" & keyword & "%' " case "Author" sql=sql & " and Author like '%" & keyword & "%' " case "Editor" sql=sql & " and Editor like '%" & keyword & "%' " case else sql=sql & " and Title like '%" & keyword & "%' " end select end if sql=sql & " order by Article.articleid desc" Set rsArticleList= Server.CreateObject("ADODB.Recordset") rsArticleList.open sql,conn,1,1 if rsArticleList.eof and rsArticleList.bof then totalPut=0 if Child=0 then response.write "


    没有任何被删除的文章!

    " else response.write "


    此栏目的下一级子栏目中没有任何被删除的文章!

    " end if else totalPut=rsArticleList.recordcount if currentpage<1 then currentpage=1 end if if (currentpage-1)*MaxPerPage>totalput then if (totalPut mod MaxPerPage)=0 then currentpage= totalPut \ MaxPerPage else currentpage= totalPut \ MaxPerPage + 1 end if end if if currentPage=1 then showContent showpage strFileName,totalput,MaxPerPage,true,true,"篇文章" else if (currentPage-1)*MaxPerPage
    <%do while not rsArticleList.eof%> <% ArticleNum=ArticleNum+1 if ArticleNum>=MaxPerPage then exit do rsArticleList.movenext loop %>
    选中 ID 文章标题 录入 点击数 文章属性 已审核 操作
    <%=rsArticleList("articleid")%> <% if rsArticleList("ClassID")<>ClassID then response.write "[" & rsArticleList("ClassName") & "] " end if if rsArticleList("IncludePic")=true then response.write "[图文]" end if response.write rsArticleList("title") %> <%= rsArticleList("Editor") %> <%= rsArticleList("Hits") %> <% if rsArticleList("OnTop")=true then response.Write " " else response.write "   " end if if rsArticleList("Hits")>=HitsOfHot then response.write "热 " else response.write "   " end if if rsArticleList("Elite")=true then response.write "荐" else response.write "  " end if %> <% if rsArticleList("Passed")=true then response.write "是" else response.write "否" end if%> " onclick='return ConfirmDel();'>彻底删除 ">还原
    选中本页显示的所有文章     
    <% end sub if ClassID>0 and Child>0 then %>
    【<%response.write "" & ClassName & ""%>】子栏目导航: <%call Admin_ShowChild()%>
    <% end if %>
    文章搜索: <%call Admin_ShowSearchForm(FileName,2)%>
    <% call CloseConn() %>