doc_list.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:4k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import="cn.js.fan.db.Paginator"%>
  3. <%@ page import="cn.js.fan.util.*"%>
  4. <%@ page import="cn.js.fan.security.*"%>
  5. <%@ page import="cn.js.fan.module.cms.*"%>
  6. <html>
  7. <head>
  8. <title>文章列表</title>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  10. <link rel="stylesheet" href="common.css" type="text/css">
  11. </head>
  12. <body bgcolor="#FFFFFF" text="#000000">
  13. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  14. <%
  15. String dir_code = ParamUtil.get(request, "dir_code");
  16. if (dir_code.equals("")) {
  17. out.print(fchar.makeErrMsg("类别编码不能为空!"));
  18. return;
  19. }
  20. Leaf lf = new Leaf();
  21. lf = lf.getLeaf(dir_code);
  22. if (!lf.isLoaded()) {
  23. out.print(fchar.makeErrMsg("节点 " + dir_code + " 不存在!"));
  24. return;
  25. }
  26. Document document = new Document();
  27. %>
  28. <table width="98%" height="577" border="0" align="center" cellpadding="0" cellspacing="0">
  29.   <tr>
  30.     <td width="100%" height="575" valign="top"><%
  31. String sql="select id from document where class1=" + StrUtil.sqlstr(dir_code);
  32. if (!SecurityUtil.isValidSql(sql)) {
  33. out.print(fchar.p_center("标识非法!"));
  34. return;
  35. }
  36. int pagesize = 20;
  37.     int total = document.getDocCount(sql);
  38. int curpage,totalpages;
  39. Paginator paginator = new Paginator(request, total, pagesize);
  40.         //设置当前页数和总页数
  41.     totalpages = paginator.getTotalPages();
  42. curpage = paginator.getCurrentPage();
  43. if (totalpages==0)
  44. {
  45. curpage = 1;
  46. totalpages = 1;
  47. }
  48. %>
  49.       <table width="92%" border="0" align="center" class="p9">
  50.         <tr>
  51.           <td height="24" align="right">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=paginator.getCurrentPage() %>/<%=paginator.getTotalPages() %></b></td>
  52.         </tr>
  53.       </table>
  54.       <table width="98%"  border="0" align="center" cellpadding="1" cellspacing="1">
  55.         <tr>
  56.           <td width="71%" height="21" align="center" bgcolor="#F3F7FA" class="line6">标&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 题</td>
  57.           <td width="19%" align="center" bgcolor="#F3F7FA" class="line6">日 期</td>
  58.           <td width="10%" align="center" bgcolor="#F3F7FA" class="line6">点击率</td>
  59.         </tr>
  60.       </table>
  61.       <table width=98% height="28" border=0 align="center" cellpadding="0" cellspacing="1" bgcolor="#FFFFFF" class="p9">
  62.         <%@ taglib uri="/WEB-INF/tlds/DocListTag.tld" prefix="dl" %>
  63. <%int i = 0;%>
  64.         <dl:DocListTag action="list" query="" dirCode="<%=dir_code%>" start="<%=(curpage-1)*pagesize%>" end="<%=curpage*pagesize%>">
  65. <%
  66. String bgcolor = "";
  67. if (i==1)
  68. bgcolor = "#F2F2F2";
  69. if (i==0)
  70. bgcolor = "";
  71. i++;
  72. if (i==2)
  73. i = 0;
  74. %>
  75.         <dl:DocListItemTag field="title" mode="detail">
  76. <tr>
  77.           <td width="71%" height=23 align="left" bgcolor="<%=bgcolor%>">&nbsp;<a href="doc_show.jsp?id=$id">$title</a></td>
  78.           <td width="19%" align="center" bgcolor="<%=bgcolor%>">[$modifiedDate]</td>
  79.         <td width="10%" align="center" bgcolor="<%=bgcolor%>">$hit</td>
  80. </tr>
  81. </dl:DocListItemTag>
  82.         </dl:DocListTag>
  83.       </table>
  84.       <table width="96%"  border="0" align="center" cellpadding="0" cellspacing="0">
  85.         <tr>
  86.           <td height="26" align="right">
  87. <%
  88. String querystr = "dir_code=" + StrUtil.UrlEncode(dir_code);
  89.     out.print(paginator.getCurPageBlock("doc_list.jsp?"+querystr));
  90. %>       </td>
  91.         </tr>
  92.     </table></td>
  93.   </tr>
  94. </table>
  95. </body>
  96. </html>