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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import="com.redmoon.blog.*"%>
  3. <%@ page import="com.redmoon.forum.MsgDb"%>
  4. <%@ page import="com.redmoon.forum.person.UserMgr"%>
  5. <%@ page import="cn.js.fan.web.*"%>
  6. <%@ page import="cn.js.fan.db.*"%>
  7. <%@ page import="cn.js.fan.util.*"%>
  8. <%@ page import="java.util.*"%>
  9. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  10. <html>
  11. <head>
  12. <%
  13. String title = SkinUtil.LoadString(request,"res.label.blog.list", "listmsg_title");
  14. title = StrUtil.format(title, new Object[] {Global.AppName});
  15. %>
  16. <title><%=title%></title>
  17. <LINK href="common.css" type=text/css rel=stylesheet>
  18. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  19. <style type="text/css">
  20. <!--
  21. .style1 {font-size: 14px;
  22. font-weight: bold;
  23. }
  24. -->
  25. </style>
  26. </head>
  27. <body>
  28. <%@ include file="blog_header.jsp"%>
  29. <table width="892" border="0" align="center" cellpadding="0" cellspacing="0">
  30.   <tr>
  31.     <td bgcolor="#F7F7F7" class="line4t" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
  32.       <tr>
  33.         <td>&nbsp;</td>
  34.       </tr>
  35.       <tr>
  36.         <td><%
  37. String searchType = ParamUtil.get(request, "searchType");
  38. String keyword = ParamUtil.get(request, "keyword");
  39. if (!searchType.equals("") || !keyword.equals("")) {
  40. if (!SQLFilter.isValidSqlParam(keyword)) {
  41. out.print(SkinUtil.makeErrMsg(request, SkinUtil.LoadString(request, SkinUtil.ERR_SQL)));
  42. return;
  43. }
  44. }
  45. String sql;
  46. if (searchType.equals("msgTitle"))
  47. sql = "select id from sq_message where isBlog=1 and replyid=-1 and title like '%" + keyword + "%' ORDER BY lydate desc";
  48. else if (searchType.equals("msgContent"))
  49. sql = "select id from sq_message where isBlog=1 and replyid=-1 and content like '%" + keyword + "%' ORDER BY lydate desc";
  50. else {
  51. sql = "select id from sq_thread where isBlog=1 ORDER BY lydate desc";
  52. }
  53. String strcurpage = StrUtil.getNullString(request.getParameter("CPages"));
  54. if (strcurpage.equals(""))
  55. strcurpage = "1";
  56. if (!StrUtil.isNumeric(strcurpage)) {
  57. out.print(StrUtil.makeErrMsg(SkinUtil.LoadString(request, "err_id")));
  58. return;
  59. }
  60.     int total = 0;
  61. int pagesize = 20;
  62. int curpage = Integer.parseInt(strcurpage);
  63. UserMgr um = new UserMgr();
  64. MsgDb md = new MsgDb();
  65. ListResult lr = md.list(sql, curpage, pagesize);
  66. total = lr.getTotal();
  67. Paginator paginator = new Paginator(request, total, pagesize);
  68. // 设置当前页数和总页数
  69. int totalpages = paginator.getTotalPages();
  70. if (totalpages==0)
  71. {
  72. curpage = 1;
  73. totalpages = 1;
  74. }
  75.         Iterator ir = lr.getResult().iterator();
  76. %>
  77.             <table width="98%" border="0" class="p9">
  78.               <tr>
  79.                 <td width="44%" align="left"></td>
  80.                 <td width="56%" align="right"><%=paginator.getPageStatics(request)%></td>
  81.               </tr>
  82.             </table>
  83.           <%
  84. while (ir.hasNext()) {
  85.     md = (MsgDb) ir.next(); 
  86.   %>
  87.             <table bordercolor=#edeced cellspacing=0 cellpadding=5 width="98%" align=center border=0>
  88.               <tbody>
  89.                 <tr>
  90.                   <td width="47%" align=left bgcolor=#f8f8f8><a href="../forum/showblog.jsp?rootid=<%=md.getId()%>"><%=md.getTitle()%></a></td>
  91.                   <td width="30%" align=left bgcolor=#f8f8f8><a href="../userinfo.jsp?username=<%=md.getName()%>"><%=um.getUser(md.getName()).getNick()%></a></td>
  92.                   <td width="23%" align=left bgcolor=#f8f8f8><%=DateUtil.format(md.getAddDate(), "yy-MM-dd HH:mm")%></td>
  93.                 </tr>
  94.                 <tr>
  95.                   <td height=1 colspan="3" align=left background="../images/comm_dot.gif"></td>
  96.                 </tr>
  97.               </tbody>
  98.             </table>
  99.           <%}%>
  100.             <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  101.               <tr>
  102.                 <td height="23" align="right"><%
  103. String querystr = "searchType=" + searchType + "&keyword=" + StrUtil.UrlEncode(keyword);
  104. out.print(paginator.getPageBlock(request,"?"+querystr));
  105. %>
  106.                   &nbsp;&nbsp;</td>
  107.               </tr>
  108.           </table></td>
  109.       </tr>
  110.     </table></td>
  111.     <td width="2"></td>
  112.     <td width="260" valign="top" bgcolor="#F7F7F7" class="line4t"><%@ include file="blog_left.jsp"%></td>
  113.   </tr>
  114.   <tr>
  115.     <td height="10"></td>
  116.   </tr>
  117. </table>
  118. <%@ include file="footer.jsp"%>
  119. </body>
  120. </html>