VIPUser_edit.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.web.*"%>
  4. <%@ page import="cn.js.fan.util.*"%>
  5. <%@ page import="com.redmoon.forum.plugin.*"%>
  6. <%@ page import="com.redmoon.forum.plugin.entrance.*"%>
  7. <%@ page import="com.redmoon.forum.*"%>
  8. <%@ page import="com.redmoon.forum.person.*"%>
  9. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  10. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  11. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  12. <html><head>
  13. <meta http-equiv="pragma" content="no-cache">
  14. <link rel="stylesheet" href="../../common.css">
  15. <LINK href="default.css" type=text/css rel=stylesheet>
  16. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  17. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  18. <title><lt:Label res="res.label.forum.admin.entrance" key="vip_user_manage"/></title>
  19. <script>
  20. function findObj(theObj, theDoc)
  21. {
  22.   var p, i, foundObj;
  23.   
  24.   if(!theDoc) theDoc = document;
  25.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  26.   {
  27.     theDoc = parent.frames[theObj.substring(p+1)].document;
  28.     theObj = theObj.substring(0,p);
  29.   }
  30.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  31.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  32.     foundObj = theDoc.forms[i][theObj];
  33.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  34.     foundObj = findObj(theObj,theDoc.layers[i].document);
  35.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  36.   
  37.   return foundObj;
  38. }
  39. var GetDate=""; 
  40. function SelectDate(ObjName,FormatDate){
  41. var PostAtt = new Array;
  42. PostAtt[0]= FormatDate;
  43. PostAtt[1]= findObj(ObjName);
  44. GetDate = showModalDialog("../../util/calendar/calendar.htm", PostAtt ,"dialogWidth:286px;dialogHeight:221px;status:no;help:no;");
  45. }
  46. function SetDate()
  47. findObj(ObjName).value = GetDate; 
  48. function openWinKinds() {
  49. var ret = showModalDialog('board_sel_multi.jsp',window.self,'dialogWidth:500px;dialogHeight:320px;status:no;help:no;')
  50. if (ret==null)
  51. return;
  52. form1.boardNames.value = "";
  53. form1.boards.value = "";
  54. for (var i=0; i<ret.length; i++) {
  55. if (form1.boardNames.value=="") {
  56. form1.boards.value += ret[i][0];
  57. form1.boardNames.value += ret[i][1];
  58. }
  59. else {
  60. form1.boards.value += "," + ret[i][0];
  61. form1.boardNames.value += "," + ret[i][1];
  62. }
  63. }
  64. }
  65. function getLeaves() {
  66. return form1.boards.value;
  67. }
  68. </script>
  69. <body bgcolor="#FFFFFF" topmargin='0' leftmargin='0'>
  70. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  71. <%
  72. if (!privilege.isMasterLogin(request))
  73. {
  74. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  75. return;
  76. }
  77. %>
  78. <table width='100%' cellpadding='0' cellspacing='0' >
  79.   <tr>
  80.     <td class="head"><lt:Label res="res.label.forum.admin.entrance" key="vip_user_manage"/></td>
  81.   </tr>
  82. </table>
  83. <br>
  84. <table width="98%" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
  85.   <tr> 
  86.     <td height=20 align="left" class="thead"> <lt:Label res="res.label.forum.admin.entrance" key="modify_user_vip"/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="entranceVIPUser.jsp"><lt:Label res="res.label.forum.admin.entrance" key="entrance_manage"/></a></td>
  87.   </tr>
  88.   <tr> 
  89.     <td valign="top">
  90. <%
  91. String userName = ParamUtil.get(request, "userName");
  92. if (userName.equals("")) {
  93. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, SkinUtil.ERR_ID)));
  94. return;
  95. }
  96. VIPUserDb vpc = new VIPUserDb();
  97. vpc = vpc.getVIPUserDb(userName);
  98. if (vpc==null || !vpc.isLoaded()) {
  99. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "res.label.forum.admin.entrance", "vip_user_not_exist"))); // "该VIP用户不存在!"));
  100. return;
  101. }
  102. String op = ParamUtil.get(request, "op");
  103. if (op.equals("edit")) {
  104. String errMsg = "";
  105. if (userName.equals("")) {
  106. // errMsg += "用户名不能为空!\r\n";
  107. }
  108. else {
  109. // 检查用户在论坛中是否存在
  110. UserDb ud = new UserDb();
  111. ud = ud.getUser(userName);
  112. if (!ud.isLoaded())
  113. errMsg += SkinUtil.LoadString(request, "res.label.forum.admin.entrance", "user_not_exist") + "\r\n";
  114. else if (!ud.isValid())
  115. errMsg += SkinUtil.LoadString(request, "res.label.forum.admin.entrance", "user_invalid") + "\r\n";
  116. }
  117. String boards="",bDate,eDate,fingerPrint="";
  118. Date beginDate=null,endDate=null;
  119. boolean isUseFingerPrint = false;
  120. boolean isValid = false;
  121. try {
  122. boards = ParamUtil.get(request, "boards");
  123. bDate = ParamUtil.get(request, "beginDate");
  124. eDate = ParamUtil.get(request, "endDate");
  125. beginDate = DateUtil.parse(bDate, "yyyy-MM-dd");
  126. endDate = DateUtil.parse(eDate, "yyyy-MM-dd");
  127. isValid = ParamUtil.getBoolean(request, "isValid", false);
  128. }
  129. catch (Exception e) {
  130. errMsg += e.getMessage() + "\r\n";
  131. }
  132. if (beginDate==null || endDate==null)
  133. errMsg += SkinUtil.LoadString(request, "res.label.forum.admin.entrance", "date_empty");
  134. if (!errMsg.equals("")) {
  135. out.print(StrUtil.Alert(errMsg));
  136. }
  137. else {
  138. vpc.setBeginDate(beginDate);
  139. vpc.setEndDate(endDate);
  140. vpc.setBoards(boards);
  141. vpc.setValid(isValid);
  142. if (vpc.save())
  143. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_success")));
  144. else
  145. out.print(StrUtil.Alert(SkinUtil.LoadString(request, "info_op_fail")));
  146. }
  147. }
  148. %>
  149. <br>
  150. <table width="40%"  border="0" align="center" cellpadding="5" class="tableframe_gray">
  151.         <form id="form1" name="form1" method="post" action="?op=edit">
  152.         <tr>
  153.           <td align="left"><lt:Label res="res.label.forum.admin.entrance" key="user_name"/></td>
  154.           <td align="left"><%=userName%><input name="userName" type="hidden" id="userName" value="<%=userName%>"></td>
  155.         </tr>
  156.         
  157.         
  158.         <tr>
  159.           <td width="27%" align="left"><lt:Label res="res.label.forum.admin.entrance" key="begin_date"/></td>
  160.           <td width="73%" align="left"><input name="beginDate" size=10 readonly value="<%=DateUtil.format(vpc.getBeginDate(), "yyyy-MM-dd")%>">
  161.             &nbsp;<img src="../../util/calendar/calendar.gif" align=absMiddle style="cursor:hand" onClick="SelectDate('beginDate','yyyy-mm-dd')"></td>
  162.         </tr>
  163.         <tr>
  164.           <td align="left"><lt:Label res="res.label.forum.admin.entrance" key="end_date"/></td>
  165.           <td align="left"><input name="endDate" size=10 readonly value="<%=DateUtil.format(vpc.getEndDate(), "yyyy-MM-dd")%>">
  166.             &nbsp;<img src="../../util/calendar/calendar.gif" align=absMiddle style="cursor:hand" onClick="SelectDate('endDate','yyyy-mm-dd')"></td>
  167.         </tr>
  168.         
  169.         <tr>
  170.           <td align="left"><lt:Label res="res.label.forum.admin.entrance" key="type"/></td>
  171.           <td align="left"><label>
  172.           <input type="hidden" name="boards" value="<%=vpc.getBoards()%>">
  173.   <%
  174.   String boards = vpc.getBoards();
  175.   String boardNames = "";
  176.   if (boards!=null && !boards.equals("")) {
  177.    String[] boardary = boards.split(",");
  178. int len = boardary.length;
  179. Directory dir = new Directory();
  180. Leaf lf = null;
  181. for (int i=0; i<len; i++) {
  182. lf = dir.getLeaf(boardary[i]);
  183. // System.out.println("VIPCard_edit.jsp " + kindAry[i]);
  184. if (lf!=null) {
  185. if (boardNames.equals(""))
  186. boardNames = lf.getName();
  187. else
  188. boardNames += "," + lf.getName();
  189. }
  190. }
  191.   }
  192.   %>
  193.           <textarea name="boardNames" cols="45" rows="3" readOnly wrap="yes" id="boardNames"><%=boardNames%></textarea>
  194.           <input onClick="openWinKinds()" type="button" value="<lt:Label res="res.label.forum.admin.entrance" key="sel_board"/>" name="button">
  195. </label></td>
  196.         </tr>
  197.         
  198.         <tr>
  199.           <td align="left"><lt:Label res="res.label.forum.admin.entrance" key="is_valid"/></td>
  200.           <td align="left">
  201.   <input type=checkbox name="isValid" value="true" <%=vpc.isValid()?"checked":""%>></td>
  202.         </tr>
  203.         <tr>
  204.           <td colspan="2" align="center"><input type="submit" name="Submit" value="<lt:Label key="ok"/>">
  205. &nbsp;&nbsp;&nbsp;&nbsp;            &nbsp;
  206. <input type="reset" name="Submit2" value="<lt:Label key="reset"/>"></td>
  207.         </tr>
  208.       </form>
  209.       </table>
  210. <br></td>
  211.   </tr>
  212. </table>
  213. </td> </tr>             
  214.       </table>                                        
  215.        </td>                                        
  216.      </tr>                                        
  217.  </table>                                        
  218.                                
  219. </body>                                        
  220. </html>                            
  221.