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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" %>
  2. <%@ page import="java.util.*"%>
  3. <%@ page import="cn.js.fan.db.Conn"%>
  4. <%@ page import="cn.js.fan.util.*"%>
  5. <%@ page import="cn.js.fan.db.*"%>
  6. <%@ page import="com.redmoon.forum.plugin.info.*"%>
  7. <%@ page import="com.redmoon.forum.plugin.*"%>
  8. <%@ page import="com.redmoon.forum.MsgDb"%>
  9. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  10. <html><head>
  11. <meta http-equiv="pragma" content="no-cache">
  12. <LINK href="default.css" type=text/css rel=stylesheet>
  13. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  15. <title>公告管理</title>
  16. <script language="JavaScript">
  17. <!--
  18. //-->
  19. </script>
  20. <body bgcolor="#FFFFFF" topmargin='0' leftmargin='0'>
  21. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  22. <%
  23. if (!privilege.isUserLogin(request))
  24. {
  25. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  26. return;
  27. }
  28. String op = ParamUtil.get(request, "op");
  29. String userName = privilege.getUser(request);
  30. if (op.equals("modify")) {
  31. int id = ParamUtil.getInt(request, "id");
  32. String typeCode = ParamUtil.get(request, "typeCode");
  33. if (typeCode.equals("")) {
  34. out.print(StrUtil.Alert("请选择信息类型!"));
  35. }
  36. else {
  37. InfoDb infoDb = new InfoDb();
  38. infoDb = infoDb.getInfoDb(id);
  39. if (infoDb.isLoaded()) {
  40. infoDb.setTypeCode(typeCode);
  41. if (infoDb.save())
  42. out.print(StrUtil.Alert("修改成功!"));
  43. else
  44. out.print(StrUtil.Alert("修改失败!"));
  45. }
  46. else {
  47. out.print(StrUtil.Alert("该信息不存在!"));
  48. }
  49. }
  50. }
  51. %>
  52. <table width='100%' cellpadding='0' cellspacing='0' >
  53.   <tr>
  54.     <td class="head">管理目录</td>
  55.   </tr>
  56. </table>
  57. <br>
  58. <table width="98%" height="227" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
  59.   <tr> 
  60.     <td height=20 align="left" class="thead">
  61. 公告信息
  62. </td>
  63.   </tr>
  64. <%
  65. int pagesize = 10;
  66. Paginator paginator = new Paginator(request);
  67. InfoDb infoDb = new InfoDb();
  68. String sql = "select id from " + infoDb.getTableName() + " where userName=" + StrUtil.sqlstr(userName) + " order by addDate desc";
  69. int total = infoDb.getObjectCount(sql);
  70. paginator.init(total, pagesize);
  71. int curpage = paginator.getCurPage();
  72. //设置当前页数和总页数
  73. int totalpages = paginator.getTotalPages();
  74. if (totalpages==0)
  75. {
  76. curpage = 1;
  77. totalpages = 1;
  78. }
  79. %>  
  80.   <tr> 
  81.     <td valign="top"><br>
  82.       <table width="95%" height="24" border="0" align="center" cellpadding="0" cellspacing="0">
  83.         <tr>
  84.           <td align="right"><div>找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=paginator.getCurrentPage() %>/<%=paginator.getTotalPages() %></b></div></td>
  85.         </tr>
  86.       </table>
  87.       <table width="98%"  border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFBFF" class="tableframe_gray">
  88.       <tr align="center">
  89.         <td width="9%" height="22">编号</td>
  90.       <td width="41%" height="22">标题</td>
  91.         <td width="13%" height="22">类型</td>
  92.       <td width="20%">日期</td>
  93.         <td width="17%">操作</td>
  94.       </tr>
  95. <%
  96. String querystr = "userName=" + StrUtil.UrlEncode(userName);
  97. Vector v = infoDb.list(sql, (curpage-1)*pagesize, curpage*pagesize-1);
  98. Iterator ir = v.iterator();
  99. int i = 0;
  100. MsgDb md = new MsgDb();
  101. while (ir.hasNext()) {
  102. infoDb = (InfoDb)ir.next();
  103. md = md.getMsgDb(infoDb.getId());
  104. i++;
  105. %>
  106. <form id="form<%=i%>" name="form<%=i%>" action="?op=modify" method="post">
  107.       <tr align="center">
  108.         <td height="28"><%=infoDb.getId()%><input type=hidden name="id" value="<%=infoDb.getId()%>">
  109. </td>
  110.         <td height="28"><%=md.getTitle()%>
  111. </td>
  112.         <td height="28">
  113. <select name=typeCode>
  114. <option value="">请选择类型</option>
  115. <%
  116. InfoConfig ic = new InfoConfig();
  117. out.print(ic.getAllTypeOptions());
  118. %>
  119. </select>
  120. <script>
  121. form<%=i%>.typeCode.value = "<%=infoDb.getTypeCode()%>";
  122. </script>
  123. </td>
  124.       <td>
  125.   <%=DateUtil.format(infoDb.getAddDate(), "yy-MM-dd HH:mm:ss")%>
  126.       <input type=hidden name=userName value="<%=userName%>">
  127. </td>
  128.         <td height="28"><input type="submit" name="Submit" value="修改">
  129. &nbsp;<a href="../../../showtopic.jsp?rootid=<%=infoDb.getId()%>" target="_blank">查看</a></td>
  130.       </tr></form>
  131. <%}%>   
  132.     </table>
  133.       <table width="87%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  134.         <tr>
  135.           <td height="23"><div align="right">
  136.               <%
  137.     out.print(paginator.getCurPageBlock("?"+querystr));
  138. %>
  139.           </div></td>
  140.         </tr>
  141.       </table>
  142.       <br>
  143.     </td>
  144.   </tr>
  145. </table>
  146. </td> </tr>             
  147.       </table>                                        
  148.        </td>                                        
  149.      </tr>                                        
  150.  </table>                                        
  151.                                
  152. </body>                                        
  153. </html>                            
  154.