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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" %>
  2. <%@ page import="java.util.*"%>
  3. <%@ page import="cn.js.fan.db.*"%>
  4. <%@ page import="cn.js.fan.web.*"%>
  5. <%@ page import="cn.js.fan.util.*"%>
  6. <%@ page import="com.redmoon.forum.person.*"%>
  7. <%@ page import="com.redmoon.forum.plugin.*"%>
  8. <%@ page import="com.redmoon.forum.plugin.entrance.*"%>
  9. <%@ page import="com.redmoon.forum.*"%>
  10. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  11. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  12. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  13. <html><head>
  14. <meta http-equiv="pragma" content="no-cache">
  15. <link rel="stylesheet" href="../../common.css">
  16. <LINK href="default.css" type=text/css rel=stylesheet>
  17. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  18. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  19. <title><lt:Label res="res.label.forum.admin.entrance" key="plugin_manager"/></title>
  20. <body bgcolor="#FFFFFF" topmargin='0' leftmargin='0'>
  21. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  22. <%
  23. if (!privilege.isMasterLogin(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. if (op.equals("add")) {
  30. String boardCode = ParamUtil.get(request, "boardCode");
  31. if (!boardCode.equals("")) {
  32. String entranceCode = VIPUserEntrance.CODE;
  33. BoardEntranceDb be = new BoardEntranceDb();
  34. be.setBoardCode(boardCode);
  35. be.setEntranceCode(entranceCode);
  36. if (be.create()) {
  37. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  38. }
  39. else
  40. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_fail")));
  41. }
  42. }
  43. if (op.equals("del")) {
  44. String boardCode = ParamUtil.get(request, "boardCode");
  45. String entranceCode = VIPUserEntrance.CODE;
  46. BoardEntranceDb be = new BoardEntranceDb();
  47. be = be.getBoardEntranceDb(boardCode, entranceCode);
  48. if (be.del()) {
  49. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  50. }
  51. else
  52. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_fail")));
  53. }
  54. if (op.equals("deluser")) {
  55. String userName = ParamUtil.get(request, "userName");
  56. VIPUserDb be = new VIPUserDb();
  57. be = be.getVIPUserDb(userName);
  58. if (be.del()) {
  59. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  60. }
  61. else
  62. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_fail")));
  63. }
  64. %>
  65. <table width='100%' cellpadding='0' cellspacing='0' >
  66.   <tr>
  67.     <td class="head"><lt:Label res="res.label.forum.admin.entrance" key="plugin_manage"/></td>
  68.   </tr>
  69. </table>
  70. <br>
  71. <table width="98%" height="227" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
  72.   <tr> 
  73.     <td height=20 align="left" class="thead"><lt:Label res="res.label.forum.admin.entrance" key="plugin_entrance"/>
  74. - <%=SkinUtil.LoadString(request, "res.config.entrance", VIPUserEntrance.CODE)%></td>
  75.   </tr>
  76.   <tr> 
  77.     <td valign="top"><br>
  78.       <table width="86%"  border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFBFF" class="tableframe_gray">
  79.       <tr align="center">
  80.         <td width="13%" height="22"><lt:Label res="res.label.forum.admin.entrance" key="board_code"/></td>
  81.       <td width="23%" height="22"><lt:Label res="res.label.forum.admin.entrance" key="board_name"/></td>
  82.         <td width="34%" height="22"><lt:Label key="op"/></td>
  83.       </tr>
  84. <%
  85. BoardEntranceDb br = new BoardEntranceDb();
  86. Vector v = br.list(VIPUserEntrance.CODE);
  87. Iterator ir = v.iterator();
  88. Leaf leaf = new Leaf();
  89. while (ir.hasNext()) {
  90. BoardEntranceDb sb = (BoardEntranceDb)ir.next();
  91. leaf = leaf.getLeaf(sb.getBoardCode());
  92. %>
  93.       <tr align="center">
  94.         <td height="22"><%=leaf.getCode()%></td>
  95.       <td height="22"><%=leaf.getName()%></td>
  96.         <td height="22"><a href="?op=del&boardCode=<%=StrUtil.UrlEncode(leaf.getCode())%>&entranceCode=<%=StrUtil.UrlEncode(sb.getEntranceCode())%>"><lt:Label key="op_del"/></a></td>
  97.       </tr>
  98. <%}%>   
  99.     </table>
  100.       <br>
  101.       <table width="86%"  border="0" align="center" cellpadding="0" cellspacing="0">
  102.   <form name=form1 action="?op=add" method=post>
  103.           <tr>
  104.           <td width="35%" align="right">
  105.   <select name="boardCode" onChange="if(this.options[this.selectedIndex].value=='no'){alert('<lt:Label res="res.label.forum.admin.entrance" key="error_sel_field"/>'); this.selectedIndex=0;}">
  106.             <option value="" selected><lt:Label res="res.label.forum.admin.entrance" key="sel_board"/></option>
  107.             <%
  108. LeafChildrenCacheMgr dlcm = new LeafChildrenCacheMgr("root");
  109. java.util.Vector vt = dlcm.getChildren();
  110. ir = vt.iterator();
  111. while (ir.hasNext()) {
  112. leaf = (Leaf) ir.next();
  113. String parentCode = leaf.getCode();
  114. %>
  115.             <option style="BACKGROUND-COLOR: #f8f8f8" value="no">╋ <%=leaf.getName()%></option>
  116. <%
  117. LeafChildrenCacheMgr dl = new LeafChildrenCacheMgr(parentCode);
  118. v = dl.getChildren();
  119. Iterator ir1 = v.iterator();
  120. while (ir1.hasNext()) {
  121. Leaf lf = (Leaf) ir1.next();
  122. %>
  123.             <option style="BACKGROUND-COLOR: #eeeeee" value="<%=lf.getCode()%>"> ├『<%=lf.getName()%>』</option>
  124. <%if (lf.getChildCount()>0) {
  125. Vector vch = lf.getChildren();
  126. Iterator irch = vch.iterator();
  127. while (irch.hasNext()) {
  128. Leaf chlf = (Leaf)irch.next();
  129. %>
  130.             <option style="BACKGROUND-COLOR: #eeeeee" value="<%=chlf.getCode()%>">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ├『<%=chlf.getName()%>』</option>
  131. <%
  132. }
  133. }%>
  134.     <%}
  135. }%>
  136.           </select>
  137. &nbsp;&nbsp;&nbsp;&nbsp;        </td>
  138.           <td width="65%" align="left">     <input type=submit value="<lt:Label res="res.label.forum.admin.entrance" key="add_board"/>">
  139. &nbsp;&nbsp;<input type="button" onClick="window.location.href='VIPUser_add.jsp'" value="<lt:Label res="res.label.forum.admin.entrance" key="add_vip_user"/>"></td>
  140.       </tr></form>
  141.       </table>
  142.       <%
  143. int pagesize = 10;
  144. Paginator paginator = new Paginator(request);
  145. VIPUserDb vtu = new VIPUserDb();
  146. String sql = "select userName from " + vtu.getTableName() + " order by beginDate desc";
  147. int total = vtu.getObjectCount(sql);
  148. paginator.init(total, pagesize);
  149. int curpage = paginator.getCurPage();
  150. //设置当前页数和总页数
  151. int totalpages = paginator.getTotalPages();
  152. if (totalpages==0)
  153. {
  154. curpage = 1;
  155. totalpages = 1;
  156. }
  157. %>
  158.       <table width="86%" height="24" border="0" align="center" cellpadding="0" cellspacing="0">
  159.         <tr>
  160.           <td align="right"><div><%=paginator.getPageStatics(request)%></div></td>
  161.         </tr>
  162.       </table>
  163.       <table width="86%"  border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#666666" class="tableframe_gray">
  164.         <tr align="center" bgcolor="#F1EDF3">
  165.           <td width="8%" height="22"><lt:Label res="res.label.forum.admin.entrance" key="user_name"/></td>
  166.           <td width="12%" height="22"><lt:Label res="res.label.forum.admin.entrance" key="begin_date"/></td>
  167.           <td width="18%" height="22"><lt:Label res="res.label.forum.admin.entrance" key="end_date"/></td>
  168.           <td width="21%"><lt:Label res="res.label.forum.admin.entrance" key="status"/></td>
  169.           <td width="14%"><lt:Label key="op"/></td>
  170.         </tr>
  171.         <%
  172. Vector vth = vtu.list(sql, (curpage-1)*pagesize, curpage*pagesize-1);
  173. UserMgr um = new UserMgr();
  174. Iterator irt = vth.iterator();
  175. int i = 0;
  176. while (irt.hasNext()) {
  177. vtu = (VIPUserDb)irt.next();
  178. i++;
  179. %>
  180.         <form id="form<%=i%>" name="form<%=i%>" action="?op=modify" method="post">
  181.           <tr align="center">
  182.             <td height="22" bgcolor="#FFFFFF"><%=um.getUser(vtu.getUserName()).getNick()%> </td>
  183.             <td height="22" bgcolor="#FFFFFF"><%=com.redmoon.forum.ForumSkin.formatDate(request, vtu.getBeginDate())%></td>
  184.             <td height="22" bgcolor="#FFFFFF"><%=com.redmoon.forum.ForumSkin.formatDate(request, vtu.getEndDate())%></td>
  185.             <td bgcolor="#FFFFFF"><%=vtu.isValid()?SkinUtil.LoadString(request, "res.label.forum.admin.entrance", "status_use"):SkinUtil.LoadString(request, "res.label.forum.admin.entrance", "status_not_use")%></td>
  186.             <td height="22" bgcolor="#FFFFFF"><a href="VIPUser_edit.jsp?userName=<%=StrUtil.UrlEncode(vtu.getUserName())%>"><lt:Label key="op_edit"/></a>&nbsp;&nbsp;<a href="#" onClick="if (confirm('<lt:Label key="confirm_del"/>')) window.location.href='?op=deluser&userName=<%=StrUtil.UrlEncode(vtu.getUserName())%>'"><lt:Label key="op_del"/></a></td>
  187.           </tr>
  188.         </form>
  189.         <%}%>
  190.       </table>
  191.       <table width="86%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  192.         <tr>
  193.           <td height="23"><div align="right">
  194.               <%
  195. String querystr = "op=" + op;
  196.     out.print(paginator.getCurPageBlock("?"+querystr));
  197. %>
  198.           </div></td>
  199.         </tr>
  200.       </table></td>
  201.       </tr>
  202.       </table>
  203.       </td>
  204.       </tr>
  205.       </table></td>
  206.   </tr>
  207. </table>
  208. </td> </tr>             
  209.       </table>                                        
  210.        </td>                                        
  211.      </tr>                                        
  212.  </table>                                        
  213.                                
  214. </body>                                        
  215. </html>                            
  216.