📄 noticequery.jsp
字号:
<%@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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -