noticequery.jsp
来自「辅助办公系统,具有发布公告、站内邮箱、日程安排、日志查看等功能」· JSP 代码 · 共 51 行
JSP
51 行
<%@page contentType="text/html;charset=GBK" import="com.x3408.notice.NoticeInfo,com.x3408.office.Constants"%>
<html>
<head>
<title>X3408辅助办公系统</title>
</head>
<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0"
background="NoticeImages/main.jpg">
<jsp:include page="<%=Constants.S_INDEXHEADER_JSP%>" />
<%
NoticeInfo noticeInfo = (NoticeInfo) request.getAttribute("noticeInfo");
%>
<TABLE width="778" valign="top" cellSpacing=0 cellPadding=0
align=center border=0>
<tr>
<td height="26" background="NoticeImages/01.jpg" align=center>
<font size=3><%=noticeInfo.getCaption()%> </font>
</td>
</tr>
<tr>
<td height="26" background="NoticeImages/01.jpg" align=right>
发布人:
<%=noticeInfo.getPublisher()%>
发布时间:
<%=noticeInfo.getPublishTime().substring(0,16)%>
</td>
</tr>
<tr>
<td background="NoticeImages/02.jpg" class="tb3">
<%String content=noticeInfo.getContent();%>
<%=content==null?"":content.replaceAll("\r\n", "<br>")%>
</td>
</tr>
<tr>
<td vAlign="middle" bgColor="#fafafa" height="26"
background="01.jpg" align=right>
<div align="center">
<label>
<input class="Btn" onclick="window.close()" type="button"
value="关闭窗口" name="Submit">
</label>
</div>
</td>
</tr>
</table>
<jsp:include page="../CommonFooter.jsp" />
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?