liuyanMana.jsp 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <%@ page language="java" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <%
  4. String path = request.getContextPath();
  5. %>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="pragma" content="no-cache" />
  10. <meta http-equiv="cache-control" content="no-cache" />
  11. <meta http-equiv="expires" content="0" />
  12. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" />
  13. <meta http-equiv="description" content="This is my page" />
  14. <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
  15. <script language="javascript">
  16. function liuyanDel(id)
  17. {
  18. if(confirm('您确定删除吗?'))
  19. {
  20. window.location.href="<%=path %>/liuyanDel.action?id="+id;
  21. }
  22. }
  23. function liuyanEditPre(id)
  24. {
  25. window.location.href="<%=path %>/liuyanEditPre.action?id="+id;
  26. }
  27. </script>
  28. </head>
  29. <body leftmargin="2" topmargin="2" background='<%=path %>/images/allbg.gif'>
  30. <table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px">
  31. <tr bgcolor="#E7E7E7">
  32. <td height="14" colspan="4" background="<%=path %>/images/tbg.gif">&nbsp;意见反馈&nbsp;</td>
  33. </tr>
  34. <tr align="center" bgcolor="#FAFAF1" height="22">
  35. <td>内容</td>
  36. <td width="15%">反馈时间</td>
  37. <td>回复</td>
  38. <td width="200px">操作</td>
  39. </tr>
  40. <c:forEach items="${liuyanList}" var="liuyan">
  41. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  42. <td bgcolor="#FFFFFF" align="center">
  43. ${liuyan.lynr}
  44. </td>
  45. <td bgcolor="#FFFFFF" align="center">
  46. ${liuyan.lysj}
  47. </td>
  48. <td bgcolor="#FFFFFF" align="center">
  49. ${liuyan.lyhf}
  50. </td>
  51. <td bgcolor="#FFFFFF" align="center">
  52. <a href="#" onclick="liuyanEditPre(${liuyan.id})" class="pn-loperator">回复</a>
  53. <a href="#" onclick="liuyanDel(${liuyan.id})" class="pn-loperator">删除</a>
  54. </td>
  55. </tr>
  56. </c:forEach>
  57. </table>
  58. </body>
  59. </html>