employeeNoteShow.jsp
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:2k
- <%@ page contentType="text/html;charset=GBK" language="java" %>
- <%@ page import = "StudyNote.*" %>
- <%@ page import = "java.util.*" %>
- <%
- Note note = (Note)session.getAttribute(Constants.NOTE_DETAIL_KEY);
- %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <title></title>
- <LINK href="images/style.css" rel=stylesheet>
- </head>
- <body>
- <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" bgcolor="#FFCC66">
- <tr>
- <td width="84%" bgcolor="#FFFFFF">
- <DIV align=left>
- <table cellSpacing="0" borderColorDark="#ffffff" cellPadding="0" width="100%" borderColorLight="#cccccc" border="1">
- <tr>
- <td align="middle" style="font-size: 10pt">
- <div align="center">
- <p style="font-size: 10pt; line-height: 140%; border-left-color: black; border-right-color: black; border-top-color: #3333ff; border-bottom-color: black">
- <font color="#cc6633">公告主题</font></div>
- </td>
- <td style="font-size: 10pt">
- <p style="font-size: 10pt; line-height: 140%; border-left-color: black; border-right-color: black; border-top-color: #3333ff; border-bottom-color: black">
- <%=note.getTitle()%></td>
- </tr>
- <tr>
- <td align="middle" style="font-size: 10pt">
- <div align="center">
- <p style="font-size: 10pt; line-height: 140%; border-left-color: black; border-right-color: black; border-top-color: #3333ff; border-bottom-color: black">
- <font color="#cc6633">公告内容</font></div>
- </td>
- <td style="font-size: 10pt">
- <%=note.getContent()%></td>
- </tr>
- <tr>
- <td align="middle" style="font-size: 10pt">
- </td>
- <td style="font-size: 10pt">
- </td>
- </tr>
- </table>
- </DIV>
- <P align=center><FONT size=2> </FONT></P>
- <p> </td>
- </tr>
- </table>
- </body>
- </html>