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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import="java.util.*"%>
  3. <%@ page import="cn.js.fan.util.*"%>
  4. <%@ page import="cn.js.fan.db.*"%>
  5. <%@ page import="cn.js.fan.web.*"%>
  6. <%@ page import="cn.js.fan.module.nav.*"%>
  7. <%@ page import="cn.js.fan.module.pvg.*" %>
  8. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  9. <html>
  10. <head>
  11. <title><lt:Label res="res.label.blog.user.link" key="title"/></title>
  12. <link href="../../common.css" rel="stylesheet" type="text/css">
  13. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  14. <style type="text/css">
  15. <!--
  16. .style4 {
  17. color: #FFFFFF;
  18. font-weight: bold;
  19. }
  20. body {
  21. margin-top: 0px;
  22. margin-left: 0px;
  23. margin-right: 0px;
  24. }
  25. -->
  26. </style>
  27. </head>
  28. <body bgcolor="#FFFFFF" text="#000000">
  29. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  30. <%
  31. String userName = ParamUtil.get(request, "userName");
  32. LinkMgr lm = new LinkMgr();
  33. LinkDb ld = new LinkDb();
  34. String op = StrUtil.getNullString(request.getParameter("op"));
  35. if (op.equals("add")) {
  36. try {
  37. if (lm.add(application, request))
  38. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.common", "info_op_success")));
  39. }
  40. catch (ErrMsgException e) {
  41. out.print(StrUtil.Alert_Back(e.getMessage()));
  42. }
  43. }
  44. if (op.equals("edit")) {
  45. try {
  46. if (lm.modify(application, request))
  47. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.common", "info_op_success")));
  48. }
  49. catch (ErrMsgException e) {
  50. out.print(StrUtil.Alert(e.getMessage()));
  51. }
  52. }
  53. if (op.equals("move")) {
  54. try {
  55. if (lm.move(request))
  56. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.common", "info_op_success")));
  57. }
  58. catch (ErrMsgException e) {
  59. out.print(StrUtil.Alert_Back(e.getMessage()));
  60. }
  61. }
  62. if (op.equals("del")) {
  63. if (lm.del(application, request))
  64. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.common", "info_op_success")));
  65. else
  66. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.common", "info_op_fail")));
  67. }
  68. if (userName.equals("")) {
  69. userName = StrUtil.getNullString(lm.getUserName());
  70. if (userName.equals("")) {
  71. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.label.blog.user.link", "not_name")));
  72. return;
  73. }
  74. }
  75. String user = privilege.getUser(request);
  76. if (!userName.equals(user)) {
  77. if (!privilege.isMasterLogin(request)) {
  78. out.print(StrUtil.Alert(SkinUtil.LoadString(request,"res.label.blog.user.link", "not_priv")));
  79. return;
  80. }
  81. }
  82. %>
  83. <br>
  84. <br>
  85. <table style="BORDER-RIGHT: #a6a398 1px solid; BORDER-TOP: #a6a398 1px solid; BORDER-LEFT: #a6a398 1px solid; BORDER-BOTTOM: #a6a398 1px solid" cellSpacing="0" cellPadding="3" width="95%" align="center">
  86.   <tbody>
  87.     <tr>
  88.       <td class="thead" style="PADDING-LEFT: 10px" noWrap width="21%"><lt:Label res="res.label.blog.user.link" key="name"/></td>
  89.       <td class="thead" noWrap width="22%"><lt:Label res="res.label.blog.user.link" key="link"/></td>
  90.       <td class="thead" noWrap width="25%"><lt:Label res="res.label.blog.user.link" key="pic"/></td>
  91.       <td width="32%" noWrap class="thead"><lt:Label res="res.label.blog.user.link" key="operate"/></td>
  92.     </tr>
  93. <%
  94. String sql = "select id from " + ld.getTableName() + " where userName=" + StrUtil.sqlstr(userName) + " and kind=" + StrUtil.sqlstr(ld.KIND_USER_BLOG) + " order by sort";
  95. Iterator ir = ld.list(sql).iterator();
  96. int i=100;
  97. while (ir.hasNext()) {
  98. i++;
  99.   ld = (LinkDb)ir.next();
  100. %>
  101.     <tr class="row" style="BACKGROUND-COLOR: #ffffff">
  102.   <form name="form<%=i%>" action="?op=edit" method="post" enctype="MULTIPART/FORM-DATA">
  103.       <td style="PADDING-LEFT: 10px">&nbsp;<img src="../../forum/images/1.gif" align="absmiddle">&nbsp;<input name=title value="<%=ld.getTitle()%>"></td>
  104.       <td><input name=url value="<%=ld.getUrl()%>" size="30"></td>
  105.       <td>
  106.         <input name="filename" type="file" style="width: 80px">
  107. </td>
  108.       <td>
  109.   [ <a href="javascript:form<%=i%>.submit()"><lt:Label res="res.label.blog.user.link" key="modify"/></a> ] [ <a onClick="if (!confirm('<lt:Label res="res.label.blog.user.link" key="del_confirm"/>')) return false" href="?op=del&id=<%=ld.getId()%>&kind=<%=ld.KIND_USER_BLOG%>&userName=<%=StrUtil.UrlEncode(userName)%>"><lt:Label res="res.label.blog.user.link" key="del"/></a> ] [<a href="?op=move&direction=up&id=<%=ld.getId()%>&userName=<%=StrUtil.UrlEncode(userName)%>"><lt:Label res="res.label.blog.user.link" key="move_up"/></a>] [<a href="?op=move&direction=down&id=<%=ld.getId()%>&userName=<%=StrUtil.UrlEncode(userName)%>"><lt:Label res="res.label.blog.user.link" key="move_down"/></a>] 
  110.   <input name="id" value="<%=ld.getId()%>" type="hidden">
  111.   <input name="userName" value="<%=userName%>" type="hidden">
  112.   <input name="kind" value="<%=ld.KIND_USER_BLOG%>" type="hidden">
  113.   </td>
  114.   </form>
  115.     </tr>
  116.     <tr class="row" style="BACKGROUND-COLOR: #ffffff">
  117.       <td colspan="4" style="PADDING-LEFT: 10px">
  118.   <%if (ld.getImage()==null || ld.getImage().equals("")) {%>
  119.   <%}else{%>
  120.   <img src="<%=request.getContextPath()+"/"+ld.getImage()%>">
  121.   <%}%>
  122.   </td>
  123.     </tr>
  124. <%}%>
  125.     <tr class="row" style="BACKGROUND-COLOR: #ffffff">
  126. <form action="?op=add" method="post" enctype="multipart/form-data" name="addform1">
  127.       <td style="PADDING-LEFT: 10px">
  128.   &nbsp;<img src="../../forum/images/1.gif" align="absmiddle">&nbsp;
  129.   <input name=title value="" size="15"></td>
  130.       <td><input name=url value="" size="30"></td>
  131.       <td><span class="stable">
  132.         <input type="file" name="filename" style="width: 80px">
  133.       </span></td>
  134.       <td><INPUT type=submit height=20 width=80 value="<lt:Label res="res.label.blog.user.link" key="add"/>">
  135.         <input name="userName" value="<%=userName%>" type="hidden">
  136.         <input name="kind" value="<%=ld.KIND_USER_BLOG%>" type="hidden">
  137.         </td>
  138. </form>
  139.     </tr>
  140.     <tr align="center" class="row" style="BACKGROUND-COLOR: #ffffff">
  141.       <td colspan="4" style="PADDING-LEFT: 10px">(<lt:Label res="res.label.blog.user.link" key="modify_pic_description"/>)</td>
  142.     </tr>
  143.   </tbody>
  144. </table>
  145. <HR noShade SIZE=1>
  146. </body>
  147. </html>