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. <html>
  9. <head>
  10. <title>管理链接</title>
  11. <link href="../common.css" rel="stylesheet" type="text/css">
  12. <link href="default.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("添加成功!"));
  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("修改成功!"));
  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("移动成功!"));
  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("删除成功!"));
  65. else
  66. out.print(StrUtil.Alert("删除失败!"));
  67. }
  68. if (userName.equals("")) {
  69. userName = StrUtil.getNullString(lm.getUserName());
  70. if (userName.equals("")) {
  71. out.print(StrUtil.Alert("用户名不能为空!"));
  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("对不起,您无权访问!"));
  79. return;
  80. }
  81. }
  82. %>
  83. <table cellSpacing="0" cellPadding="0" width="100%">
  84.   <tbody>
  85.     <tr>
  86.       <td class="head">管理链接</td>
  87.     </tr>
  88.   </tbody>
  89. </table>
  90. <br>
  91. <br>
  92. <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">
  93.   <tbody>
  94.     <tr>
  95.       <td class="thead" style="PADDING-LEFT: 10px" noWrap width="21%">名称</td>
  96.       <td class="thead" noWrap width="22%"><img src="images/tl.gif" align="absMiddle" width="10" height="15">链接</td>
  97.       <td class="thead" noWrap width="25%">图片</td>
  98.       <td width="32%" noWrap class="thead"><img src="images/tl.gif" align="absMiddle" width="10" height="15">操作</td>
  99.     </tr>
  100. <%
  101. String sql = "select id from " + ld.getTableName() + " where userName=" + StrUtil.sqlstr(userName) + " and kind=" + StrUtil.sqlstr(ld.KIND_SHOP) + " order by sort";
  102. Iterator ir = ld.list(sql).iterator();
  103. int i=100;
  104. while (ir.hasNext()) {
  105. i++;
  106.   ld = (LinkDb)ir.next();
  107. %>
  108.     <tr class="row" style="BACKGROUND-COLOR: #ffffff">
  109.   <form name="form<%=i%>" action="?op=edit" method="post" enctype="MULTIPART/FORM-DATA">
  110.       <td style="PADDING-LEFT: 10px">&nbsp;<img src="images/arrow.gif" align="absmiddle">&nbsp;<input name=title value="<%=ld.getTitle()%>"></td>
  111.       <td><input name=url value="<%=ld.getUrl()%>" size="30"></td>
  112.       <td>
  113.         <input name="filename" type="file" style="width: 80px">
  114. </td>
  115.       <td>
  116.   [ <a href="javascript:form<%=i%>.submit()">编辑</a> ] [ <a onClick="if (!confirm('您确定要删除吗?')) return false" href="?op=del&id=<%=ld.getId()%>&kind=<%=ld.KIND_SHOP%>&userName=<%=StrUtil.UrlEncode(userName)%>">删除</a> ] [<a href="?op=move&direction=up&id=<%=ld.getId()%>&userName=<%=StrUtil.UrlEncode(userName)%>">上移</a>] [<a href="?op=move&direction=down&id=<%=ld.getId()%>&userName=<%=StrUtil.UrlEncode(userName)%>">下移</a>] 
  117.   <input name="id" value="<%=ld.getId()%>" type="hidden">
  118.   <input name="userName" value="<%=userName%>" type="hidden">
  119.   <input name="kind" value="<%=ld.KIND_SHOP%>" type="hidden">
  120.   </td>
  121.   </form>
  122.     </tr>
  123.     <tr class="row" style="BACKGROUND-COLOR: #ffffff">
  124.       <td colspan="4" style="PADDING-LEFT: 10px">
  125.   <%if (ld.getImage()==null || ld.getImage().equals("")) {%>
  126.   <%}else{%>
  127.   <img src="<%=request.getContextPath()+"/"+ld.getImage()%>">
  128.   <%}%>
  129.   </td>
  130.     </tr>
  131. <%}%>
  132.     <tr class="row" style="BACKGROUND-COLOR: #ffffff">
  133. <form action="?op=add" method="post" enctype="multipart/form-data" name="addform1">
  134.       <td style="PADDING-LEFT: 10px">
  135.   &nbsp;<img src="images/arrow.gif" align="absmiddle">&nbsp;
  136.   <input name=title value="" size="15"></td>
  137.       <td><input name=url value="" size="30"></td>
  138.       <td><span class="stable">
  139.         <input type="file" name="filename" style="width: 80px">
  140.       </span></td>
  141.       <td><INPUT type=submit height=20 width=80 value="添加">
  142.         <input name="userName" value="<%=userName%>" type="hidden">
  143.         <input name="kind" value="<%=ld.KIND_SHOP%>" type="hidden">
  144.         </td>
  145. </form>
  146.     </tr>
  147.     <tr align="center" class="row" style="BACKGROUND-COLOR: #ffffff">
  148.       <td colspan="4" style="PADDING-LEFT: 10px">( 如果没有上传图片,点击编辑将删除原来的图片)</td>
  149.     </tr>
  150.   </tbody>
  151. </table>
  152. <HR noShade SIZE=1>
  153. </body>
  154. </html>