<%@language=vbscript codepage=936 %> <% option explicit response.buffer=true Const PurviewLevel=2 Const CheckChannelID=4 Const PurviewLevel_Photo=1 %> <% dim strFileName,FileName const MaxPerPage=20 dim totalPut,CurrentPage,TotalPages dim i,j dim keyword,strField dim sql,rsPhotoList 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_PhotoRecyclebin.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 PhotoClass 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 P.PhotoID,P.ClassID,C.ClassName,P.PhotoName,P.Keyword,P.Author,P.UpdateTime,P.Editor,P.Hits,P.PhotoUrl_Thumb,P.PhotoSize,P.OnTop,P.Elite,P.Passed,P.Stars,P.PhotoLevel,P.PhotoPoint from Photo P" sql=sql & " inner join PhotoClass C on P.ClassID=C.ClassID where P.Deleted=True" if ClassID>0 then if Child>0 then ChildID="" set tClass=conn.execute("select ClassID from PhotoClass where ParentID=" & ClassID & " or 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 P.ClassID in (" & ChildID & ")" else sql=sql & " and P.ClassID=" & ClassID end if end if if strField<>"" then if keyword<>"" then select case strField case "PhotoName" sql=sql & " and P.PhotoName like '%" & keyword & "%' " case "PhotoIntro" sql=sql & " and P.PhotoIntro like '%" & keyword & "%' " case "Author" sql=sql & " and P.Author like '%" & keyword & "%' " case "Editor" sql=sql & " and P.Editor like '%" & keyword & "%' " case else sql=sql & " and P.PhotoName like '%" & keyword & "%' " end select end if end if sql=sql & " order by P.PhotoID desc" Set rsPhotoList= Server.CreateObject("ADODB.Recordset") rsPhotoList.open sql,conn,1,1 if rsPhotoList.eof and rsPhotoList.bof then totalPut=0 if Child=0 then response.write "


    没有任何被删除的图片!

    " else response.write "


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

    " end if else totalPut=rsPhotoList.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 rsPhotoList.eof%> <% PhotoNum=PhotoNum+1 if PhotoNum>=MaxPerPage then exit do rsPhotoList.movenext loop %>
    选中 ID 缩略图 图片名称 图片大小 下载次数 图片属性 已审核 操作
    <%=rsPhotoList("Photoid")%> <%response.write ""%> <% if rsPhotoList("ClassID")<>ClassID then response.write "[" & rsPhotoList("ClassName") & "] " end if response.write "" & rsPhotoList("PhotoName") & "" %> <%=rsPhotoList("PhotoSize") & " K"%> <%= rsPhotoList("Hits") %> <% if rsPhotoList("OnTop")=true then response.Write " " else response.write "   " end if if rsPhotoList("Hits")>=HitsOfHot then response.write "热 " else response.write "   " end if if rsPhotoList("Elite")=true then response.write "荐" else response.write "  " end if %> <% if rsPhotoList("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() %>