noticeView.jsp
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:3k
源码类别:

Applet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GB2312"%>
  2. <%@ page import="java.sql.*,java.lang.*"%>
  3. <jsp:useBean id="noticeBeans" class="MyFly.Bean.noticeBeans" scope="request"/>
  4. <STYLE type=text/css>
  5. BODY {
  6. BACKGROUND: #799ae1; FONT: 9pt 宋体; MARGIN: 0px
  7. }
  8. TABLE {
  9. BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-RIGHT: 0px; BORDER-TOP: 0px
  10. }
  11. TD {
  12. FONT: 12px 宋体
  13. }
  14. IMG {
  15. BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: bottom
  16. }
  17. A {
  18. COLOR: #000000; FONT: 12px 宋体; TEXT-DECORATION: none
  19. }
  20. A:hover {
  21. COLOR: #428eff; TEXT-DECORATION: underline
  22. }
  23. .sec_menu {
  24. BACKGROUND: #d6dff7; BORDER-BOTTOM: white 1px solid; BORDER-LEFT: white 1px solid; BORDER-RIGHT: white 1px solid; OVERFLOW: hidden
  25. }
  26. .menu_title {
  27. }
  28. .menu_title SPAN {
  29. COLOR: #215dc6; FONT-WEIGHT: bold; LEFT: 8px; POSITION: relative; TOP: 2px
  30. }
  31. .menu_title2 {
  32. }
  33. .menu_title2 SPAN {
  34. COLOR: #428eff; FONT-WEIGHT: bold; LEFT: 8px; POSITION: relative; TOP: 2px
  35. }
  36. .style1 {color: #FF0000}
  37. </STYLE>
  38. <html>
  39. <head>
  40. <title>公告管理</title>
  41. <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
  42. </head>
  43. <body>
  44. <p>&nbsp;</p>
  45. <table width="595" height="2%" border="0" align="center" cellpadding="0" cellspacing="0">
  46.   <tr>
  47.     <td height="26" align="center"><span class="style1">公告管理</span></td>
  48.   </tr>
  49. </table>
  50. <table width="595" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">
  51.   <tr valign="middle" bgcolor="#799ae1"> 
  52.     <td width="220" height="29" align="center"><font color="#FFFFFF">公告内容</font></td>
  53.     <td width="221" align="center"><font color="#FFFFFF">添加时间</font></td>
  54.     <td align="center"><font color="#FFFFFF">编辑</font></td>
  55.     <td align="center"><font color="#FFFFFF">删除</font></td>
  56.   </tr>
  57.   
  58.   <% 
  59.       noticeBeans.getQuery("-1");
  60.   for(int i=0; i<noticeBeans.getItems(); i++)
  61.   {
  62. %>
  63.   <tr> 
  64.     <td height="28" align="center">&nbsp;<%=noticeBeans.getContent(i)%></td>
  65.     <td align="center">&nbsp;<%=noticeBeans.getAppendTime(i)%></a></td>
  66. <td width="60" align="center"><a href="noticeEdit.jsp?index=<%=noticeBeans.getNoticeID(i)%>"><img src="../images/admin/edit.gif" alt="编辑" width="19" height="18" border="0"></a></td>
  67.     <td width="60" align="center"><a href="noticeDel.jsp?index=<%=noticeBeans.getNoticeID(i)%>"><img src="../images/admin/del.gif" alt="é?3yà???" width="16" height="16" border="0"></a></td>
  68.   </tr>
  69. <% 
  70. }
  71. %>
  72. </table>
  73. <form name="form1" method="post" action="noticeAdd.jsp">
  74.   <div align="center">
  75.     <input type="submit" name="Submit" value="添加">
  76.   </div>
  77. </form>
  78. <p>&nbsp; </p>
  79. </body>
  80. </html>