doc_list_notice.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. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  15. <%
  16. String priv="read";
  17. if (!privilege.isUserPrivValid(request,priv))
  18. {
  19. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  20. return;
  21. }
  22. %>
  23. <%
  24. String dir_code = ParamUtil.get(request, "dir_code");
  25. if (dir_code.equals("")) {
  26. out.print(fchar.makeErrMsg("类别编码不能为空!"));
  27. return;
  28. }
  29. Leaf lf = new Leaf();
  30. lf = lf.getLeaf(dir_code);
  31. if (!lf.isLoaded()) {
  32. out.print(fchar.makeErrMsg("节点 " + dir_code + " 不存在!"));
  33. return;
  34. }
  35. Document document = new Document();
  36. %>
  37. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" class="tableframe">
  38.   <tr>
  39.     <td width="100%" height="21" class="right-title">&nbsp;<img src="images/i_sound.gif" width="21" height="16" align="absmiddle">&nbsp;通知</td>
  40.   </tr>
  41.   <tr>
  42.     <td valign="top" bgcolor="#FFFFFF"><%
  43. String sql="select id from document where class1=" + StrUtil.sqlstr(dir_code);
  44. if (!SecurityUtil.isValidSql(sql)) {
  45. out.print(fchar.p_center("标识非法!"));
  46. return;
  47. }
  48. int pagesize = 20;
  49.     int total = document.getDocCount(sql);
  50. int curpage,totalpages;
  51. Paginator paginator = new Paginator(request, total, pagesize);
  52.         //设置当前页数和总页数
  53.     totalpages = paginator.getTotalPages();
  54. curpage = paginator.getCurrentPage();
  55. if (totalpages==0)
  56. {
  57. curpage = 1;
  58. totalpages = 1;
  59. }
  60. %>
  61.       <table width="92%" border="0" align="center" class="p9">
  62.         <tr>
  63.           <td height="24" align="right">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=paginator.getCurrentPage() %>/<%=paginator.getTotalPages() %></b></td>
  64.         </tr>
  65.       </table>
  66.       <table width="100%"  border="0" align="center" cellpadding="1" cellspacing="1">
  67.         <tr>
  68.           <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>
  69.           <td width="19%" align="center" bgcolor="#F3F7FA" class="line6">日 期</td>
  70.           <td width="10%" align="center" bgcolor="#F3F7FA" class="line6">点击率</td>
  71.         </tr>
  72.       </table>
  73.       <table width=100% height="28" border=0 align="center" cellpadding="0" cellspacing="1" class="p9">
  74.         <%@ taglib uri="/WEB-INF/tlds/DocListTag.tld" prefix="dl" %>
  75. <%int i = 0;%>
  76.         <dl:DocListTag action="list" query="" dirCode="<%=dir_code%>" start="<%=(curpage-1)*pagesize%>" end="<%=curpage*pagesize%>">
  77. <%
  78. String bgcolor = "";
  79. if (i==1)
  80. bgcolor = "#F2F2F2";
  81. if (i==0)
  82. bgcolor = "";
  83. i++;
  84. if (i==2)
  85. i = 0;
  86. %>
  87.         <dl:DocListItemTag field="title" mode="detail">
  88. <tr>
  89.           <td width="71%" height=23 align="left" bgcolor="<%=bgcolor%>">&nbsp;<a href="doc_show_notice.jsp?id=$id">$title</a></td>
  90.           <td width="19%" align="center" bgcolor="<%=bgcolor%>">[$modifiedDate]</td>
  91.         <td width="10%" align="center" bgcolor="<%=bgcolor%>">$hit</td>
  92. </tr>
  93. </dl:DocListItemTag>
  94.         </dl:DocListTag>
  95.       </table>
  96.       <table width="96%"  border="0" align="center" cellpadding="0" cellspacing="0">
  97.         <tr>
  98.           <td height="26" align="right">
  99. <%
  100. String querystr = "dir_code=" + StrUtil.UrlEncode(dir_code);
  101.     out.print(paginator.getCurPageBlock("?"+querystr));
  102. %>       </td>
  103.         </tr>
  104.     </table></td>
  105.   </tr>
  106. </table>
  107. </body>
  108. </html>