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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import="java.util.*,
  3.  java.text.*,
  4.  com.redmoon.blog.*,
  5.  cn.js.fan.db.*,
  6.  cn.js.fan.util.*,
  7.  com.redmoon.forum.person.UserMgr,
  8.  com.redmoon.forum.person.UserDb,
  9.  cn.js.fan.web.*,
  10.  cn.js.fan.module.pvg.*"
  11. %>
  12. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  13. <HTML><HEAD><TITLE><lt:Label res="res.label.blog.admin.blog" key="title"/></TITLE>
  14. <META http-equiv=Content-Type content="text/html; charset=utf-8"><LINK 
  15. href="images/default.css" type=text/css rel=stylesheet>
  16. <META content="MSHTML 6.00.3790.259" name=GENERATOR>
  17. <style type="text/css">
  18. <!--
  19. .style1 { font-size: 14px;
  20. font-weight: bold;
  21. }
  22. -->
  23. </style>
  24. </HEAD>
  25. <BODY text=#000000 bgColor=#eeeeee leftMargin=0 topMargin=0>
  26. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  27. <%
  28. if (!privilege.isMasterLogin(request))
  29. {
  30. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  31. return;
  32. }
  33. String privurl;
  34. String op = ParamUtil.get(request, "op");
  35. if (op.equals("stop")) {
  36. privurl = ParamUtil.get(request, "privurl");
  37. String userName = ParamUtil.get(request, "userName");
  38. UserConfigDb uc = new UserConfigDb();
  39. uc = uc.getUserConfigDb(userName);
  40. int isValid = ParamUtil.getInt(request, "isValid");
  41. uc.setValid(isValid==1?true:false);
  42. if (uc.save()) {
  43. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request,"res.common", "info_op_success"), privurl));
  44. }
  45. else {
  46. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request,"res.common", "info_op_fail"), privurl));
  47. }
  48. }
  49. if (op.equals("del")) {
  50. String userName = ParamUtil.get(request, "userName");
  51. UserConfigDb uc = new UserConfigDb();
  52. uc = uc.getUserConfigDb(userName);
  53. if (uc.del())
  54. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.common", "info_op_success")));
  55. else
  56. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.common", "info_op_fail")));
  57. }
  58. privurl = ParamUtil.get(request, "privurl");
  59. %>
  60. <TABLE cellSpacing=0 cellPadding=0 width="100%">
  61.   <TBODY>
  62.   <TR>
  63.     <TD class=head><lt:Label res="res.label.blog.admin.blog" key="blog_management"/></TD>
  64.   </TR></TBODY></TABLE>
  65. <br>
  66. <%
  67. int pagesize = 10;
  68. Paginator paginator = new Paginator(request);
  69. UserConfigDb ucd = new UserConfigDb();
  70. String sql = "select userName from " + ucd.getTableName();
  71. int total = ucd.getObjectCount(sql);
  72. paginator.init(total, pagesize);
  73. int curpage = paginator.getCurPage();
  74. //设置当前页数和总页数
  75. int totalpages = paginator.getTotalPages();
  76. if (totalpages==0)
  77. {
  78. curpage = 1;
  79. totalpages = 1;
  80. }
  81. %>
  82. <table width="98%" height="227" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
  83.   <tr>
  84.     <td height=20 align="center" class="thead style1"><lt:Label res="res.label.blog.admin.blog" key="blog_list"/></td>
  85.   </tr>
  86.   <tr>
  87.     <td valign="top"><br>
  88.         <table width="86%" height="24" border="0" align="center" cellpadding="0" cellspacing="0">
  89.           <tr>
  90.             <td align="right">
  91. <%=paginator.getPageStatics(request)%>
  92. </td>
  93.           </tr>
  94.         </table>
  95.       <table width="86%"  border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#666666"">
  96.           <tr align="center" bgcolor="#F1EDF3">
  97.             <td width="17%" height="22"><lt:Label res="res.label.blog.admin.blog" key="username"/></td>
  98.             <td width="22%" height="22"><lt:Label res="res.label.blog.admin.blog" key="penname"/></td>
  99.             <td width="21%"><lt:Label res="res.label.blog.admin.blog" key="adddate"/></td>
  100.             <td width="26%"><lt:Label res="res.label.blog.admin.blog" key="operate"/></td>
  101.           </tr>
  102.           <%
  103. Vector v = ucd.list(sql, (curpage-1)*pagesize, curpage*pagesize-1);
  104. Iterator ir = v.iterator();
  105. int i = 0;
  106. UserMgr um = new UserMgr();
  107. while (ir.hasNext()) {
  108. ucd = (UserConfigDb)ir.next();
  109. i++;
  110. %>
  111.           <form id="form<%=i%>" name="form<%=i%>" action="?op=modify" method="post">
  112.             <tr align="center">
  113.               <td height="22" bgcolor="#FFFFFF"><a target=_blank href="../myblog.jsp?userName=<%=StrUtil.UrlEncode(ucd.getUserName())%>">
  114.   <%
  115.   UserDb ud = um.getUser(ucd.getUserName());
  116.   out.print(ud.getNick());
  117.   %>
  118.   </a>              </td>
  119.               <td height="22" bgcolor="#FFFFFF"><%=ucd.getPenName()%></td>
  120.               <td bgcolor="#FFFFFF"><%=DateUtil.format(ucd.getAddDate(), "yy-MM-dd HH:mm:ss")%></td>
  121.               <td height="22" bgcolor="#FFFFFF">
  122.   <%if (ucd.isValid()) {%>
  123.   <lt:Label res="res.label.blog.admin.blog" key="used"/>&nbsp;&nbsp;<a title="<lt:Label res="res.label.blog.admin.blog" key="no_use_userblog"/>" href="?op=stop&userName=<%=StrUtil.UrlEncode(ucd.getUserName())%>&privurl=<%=privurl%>&isValid=0"><lt:Label res="res.label.blog.admin.blog" key="no_use"/></a>
  124.   <%}else{%>
  125.   <lt:Label res="res.label.blog.admin.blog" key="no_used"/>&nbsp;&nbsp;<a title="<lt:Label res="res.label.blog.admin.blog" key="use_userblog"/>" href="?op=stop&userName=<%=StrUtil.UrlEncode(ucd.getUserName())%>&privurl=<%=privurl%>&isValid=1"><font color=red><lt:Label res="res.label.blog.admin.blog" key="use"/></font></a>
  126.   <%}%>
  127.   &nbsp;<a href="?op=del&userName=<%=StrUtil.UrlEncode(ucd.getUserName())%>"><lt:Label res="res.label.blog.admin.blog" key="del"/></a>   </td>
  128.             </tr>
  129.           </form>
  130.           <%}%>
  131.         </table>
  132.       <table width="86%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  133.           <tr>
  134.             <td height="23"><div align="right">
  135.                 <%
  136. String querystr = "";
  137.     out.print(paginator.getPageBlock(request,"?"+querystr));
  138. %>
  139.             </div></td>
  140.           </tr>
  141.       </table></td>
  142.   </tr>
  143. </table>
  144. <br>
  145. </BODY></HTML>