MANAGEbbs.ASP
上传用户:qyswxdl
上传日期:2013-06-01
资源大小:1373k
文件大小:6k
源码类别:

家庭/个人应用

开发平台:

ASP/ASPX

  1. <!--#include file="articleconn.asp"-->
  2. <!--#include file="home1.asp"-->
  3. <!--#include file="security.asp"-->
  4. <!--#include file="../checkpost.asp"-->
  5. <%if session("flag")>1 then
  6.     response.write "<script>alert('您的操作权限不够!');history.back();</script>"
  7.     response.end
  8. end if
  9. %>
  10. <html>
  11. <head>
  12. <meta http-equiv="Content-Language" content="zh-cn">
  13. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  14. <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
  15. <meta name="ProgId" content="FrontPage.Editor.Document">
  16. <link rel="stylesheet" href="inc/Admin_STYLE.CSS" type="text/css">
  17. <title></title>
  18. <style type="text/css">
  19. <!--
  20. .样式1 {color: #FFFFFF}
  21. -->
  22. </style>
  23. </head>
  24. <script language="javascript">
  25. function popwin2(id,path)
  26. { window.open("openarticle.asp?id="+id+"&ppath="+path,"","height=500,width=600,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=yes");
  27. }
  28. </script>
  29. <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  30. <!--#include file="top1.asp"-->
  31. <%
  32.    dim rs
  33.    MaxPerPage=20
  34.    dim totalPut   
  35.    dim CurrentPage
  36.    dim TotalPages
  37.    dim i,j
  38.    dim typename
  39.    typename=""
  40.    if not isempty(request("page")) then
  41.       currentPage=cint(request("page"))
  42.    else
  43.       currentPage=1
  44.    end if
  45.    dim sql
  46.    dim rstype
  47.    dim typesql
  48.    dim typeid,typename1
  49.    if not isEmpty(Replace(request("typeid"), "'", "''")) then
  50. typeid=Replace(request("typeid"), "'", "''")
  51.    else
  52. typeid=0
  53.    end if
  54.   
  55. %>
  56. <br>
  57. <div align="center">
  58.   <% if request("name23")="" then
  59.  sql="select articleid,title,dateandtime,review from learning  order by dateandtime desc" 
  60.  else 
  61.   sql="select articleid,title,dateandtime,review from learning where title like  '%"&request("name23")&"%' order by dateandtime desc" 
  62.   end if
  63. Set rs= Server.CreateObject("ADODB.Recordset") 
  64. rs.open sql,conn,1,1 
  65.   if rs.eof and rs.bof then 
  66.        response.write "<p align='center'><br><br>还 没 有 任 何 文 章!</p>" 
  67.    else 
  68.   totalPut=rs.recordcount 
  69.       totalPut=rs.recordcount 
  70.       if currentpage<1 then 
  71.           currentpage=1 
  72.       end if 
  73.       if (currentpage-1)*MaxPerPage>totalput then 
  74.    if (totalPut mod MaxPerPage)=0 then 
  75.      currentpage= totalPut  MaxPerPage 
  76.    else 
  77.       currentpage= totalPut  MaxPerPage + 1 
  78.    end if 
  79.  
  80.       end if 
  81.        if currentPage=1 then 
  82.            showpage totalput,MaxPerPage,"managebbs.asp" 
  83.             showContent 
  84.             showpage totalput,MaxPerPage,"managebbs.asp" 
  85.        else 
  86.           if (currentPage-1)*MaxPerPage<totalPut then 
  87.             rs.move  (currentPage-1)*MaxPerPage 
  88.             dim bookmark 
  89.             bookmark=rs.bookmark 
  90.            showpage totalput,MaxPerPage,"managebbs.asp" 
  91.             showContent 
  92.              showpage totalput,MaxPerPage,"managebbs.asp" 
  93.         else 
  94.         currentPage=1 
  95.            showpage totalput,MaxPerPage,"managebbs.asp" 
  96.            showContent 
  97.            showpage totalput,MaxPerPage,"managebbs.asp" 
  98.       end if 
  99.    end if 
  100.    end if  
  101.  
  102.    sub showContent 
  103.        dim i 
  104.    i=0 
  105.  
  106.   %>
  107.   <table width="100%" border="0" cellspacing="0" cellpadding="0">
  108.   <form method="POST" action="managebbs.asp">
  109.     <tr>
  110.       <td><div align="center"><b>按电影名查询</b>
  111.           <input type="text" name="name23" size="20">
  112.           <input name="submit" type="submit" value="查询">
  113.           &nbsp;&nbsp;<a href="managebbs01.asp"><b>只显示有评论的电影</b></a>  </div></td>
  114.     </tr>
  115.   </table>
  116. </div>
  117. <center>
  118.   <center>
  119.     
  120.   </center>
  121.   <table border="0" cellspacing="1" width="100%" class="border" bordercolorlight="#000000" bordercolordark="#FFFFFF" cellpadding="2" height="47" style="border-collapse: collapse" bordercolor="#111111">
  122.     <tr bgcolor="#429AEF">
  123.       <td height="20"><div align="center" class="样式1"><strong>ID号</strong></div></td>
  124.       <td height="20"><div align="center" class="样式1"><strong>电影名称</strong></div></td>
  125.       <td height="20"><div align="center" class="样式1"><strong>修改</strong></div></td>
  126.       <td width="233" height="20"><div align="center" class="样式1"><strong>删除</strong></div></td>
  127.     </tr>
  128.   <%do while not rs.eof%>
  129.     <tr> 
  130.       <td width="66" height="12" class="tdbg"> <p align="center"><%=rs("articleid")%></td>
  131.       <td width="407" height="12" class="tdbg">·<a href="../re.asp?id=<%=rs("articleid")%>" target="_blank"><%=rs("title")%> 相关评论</a></td>
  132.       <td width="264" height="12" class="tdbg"><div align="center"><a target="_blank" href="editbbs.asp?id=<%=rs("articleid")%>">修改</a></div></td>
  133.      
  134.           <td class="tdbg"><div align="center"><a href="deletebbs.asp?articleid=<%=rs("articleid")%>"><font color="#000000">删除</font></a></div>          </td>
  135.     </tr>
  136.  <% i=i+1 
  137.       if i>=20 then exit do 
  138.       rs.movenext 
  139.    loop 
  140.   %>
  141.   </table>
  142.   <%
  143. end sub 
  144. function showpage(totalnumber,maxperpage,filename)
  145. dim n
  146. if totalnumber mod maxperpage=0 then
  147. n= totalnumber  maxperpage
  148. else
  149. n= totalnumber  maxperpage+1
  150. end if
  151. %>
  152.   <table border="0" bgcolor="#FFFFFF" cellspacing="0" height="25" width="100%">
  153.     <form method=Post action="<%=filename%>?typeid=<%=typeid%>">
  154.       <tr>
  155.         <td>
  156.           <center>
  157.             共有<font color="#ff0000"><b><%=totalnumber%></b></font>部&nbsp;&nbsp;&nbsp;当前:第<strong><font color="#ff0000"><%=CurrentPage%></font></strong>页/共<strong><font color="#ff0000"><%=n%></font></strong>页
  158.           </center>
  159.         <td><div align="right">
  160.             <%if CurrentPage<2 then%>
  161.             <font color='888888'>首页&nbsp;上一页</font>&nbsp;&nbsp;&nbsp;
  162.             <%else%>
  163.             <a class=left href="<%=filename%>?typeid=<%=typeid%>&page=1&">首页</a>&nbsp; <a class=left href="<%=filename%>?typeid=<%=typeid%>&page=<%=CurrentPage-1%>">上一页</a>&nbsp;&nbsp;&nbsp;
  164.             <%
  165. end if
  166. if n-currentpage<1 then
  167. %>
  168.             <font color='888888'>下一页&nbsp;尾页</font>&nbsp;&nbsp;&nbsp;
  169.             <%else%>
  170.             <a class=left href="<%=filename%>?typeid=<%=typeid%>&page=<%=(CurrentPage+1)%>">下一页</a>&nbsp; <a class=left href="<%=filename%>?typeid=<%=typeid%>&page=<%=n%>">尾页</a>&nbsp;
  171.             <%end if%>
  172.           </div>
  173.         <td align="center">&nbsp;</td>
  174.       </tr>
  175.     </form>
  176. <% 
  177. end function
  178. %>
  179. <%
  180. sub gotopage
  181. end sub
  182. %>
  183.   </table>
  184.   <p></p>
  185. </center>
  186. <%rs.close          
  187.    set rs=nothing   
  188.    conn.close 
  189.    set conn=nothing %>
  190. </body>
  191. </html>