employeeNoteShow.jsp
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <%@ page contentType="text/html;charset=GBK" language="java" %>
  2. <%@ page import = "StudyNote.*" %>
  3. <%@ page import = "java.util.*" %>
  4. <%
  5. Note note = (Note)session.getAttribute(Constants.NOTE_DETAIL_KEY);
  6. %>
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  10. <title></title>
  11. <LINK href="images/style.css" rel=stylesheet>
  12. </head>
  13. <body>
  14. <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" bgcolor="#FFCC66">
  15.   <tr>
  16.     <td width="84%" bgcolor="#FFFFFF">
  17. <DIV align=left>
  18.   <table cellSpacing="0" borderColorDark="#ffffff" cellPadding="0" width="100%" borderColorLight="#cccccc" border="1">
  19.     <tr>
  20.       <td align="middle" style="font-size: 10pt">
  21.       <div align="center">
  22.         <p style="font-size: 10pt; line-height: 140%; border-left-color: black; border-right-color: black; border-top-color: #3333ff; border-bottom-color: black">
  23.         <font color="#cc6633">公告主题</font></div>
  24.       </td>
  25.       <td style="font-size: 10pt">
  26.       <p style="font-size: 10pt; line-height: 140%; border-left-color: black; border-right-color: black; border-top-color: #3333ff; border-bottom-color: black">
  27.       &nbsp;<%=note.getTitle()%></td>
  28.     </tr>
  29.     <tr>
  30.       <td align="middle" style="font-size: 10pt">
  31.       <div align="center">
  32.         <p style="font-size: 10pt; line-height: 140%; border-left-color: black; border-right-color: black; border-top-color: #3333ff; border-bottom-color: black">
  33.         <font color="#cc6633">公告内容</font></div>
  34.       </td>
  35.       <td style="font-size: 10pt">
  36.        <%=note.getContent()%></td>
  37.     </tr>
  38.     <tr>
  39.       <td align="middle" style="font-size: 10pt">
  40.        </td>
  41.       <td style="font-size: 10pt">
  42.        </td>
  43.     </tr>
  44.   </table>
  45.  </DIV>
  46. <P align=center><FONT size=2>&nbsp; </FONT></P>
  47.     <p> </td>
  48.   </tr>
  49. </table>
  50. </body>
  51. </html>