📄 newsmanagerview.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<style type="text/css">
<!--
body,td,th {
font-size: 14px;
color: #000000;
}
body {
background-color: #CCCCCC;
}
.STYLE3 {
color: #006600
}
.STYLE4 {
font-weight: bold;
font-size: xx-large;
color: #003300;
}
a {
font-size: 12px;
color: #880066;
}
a:link {
text-decoration: none;
color: #000000;
}
a:visited {
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: none;
color: #FF00FF;
}
a:active {
text-decoration: none;
color: #9900FF;
}
.STYLE5 {
color: #000000
}
-->
</style>
<html>
<head>
<title>管理员查看新闻</title>
</head>
<body>
<div>
<h1 align="center">
<font color="#7060cc"><bean:write name="news"
property="title" />
</font>
</h1>
</div>
<table width="600" border="1" bgcolor="#ecf1f9" align="center">
<tbody>
<tr height="30px">
<td>
<b>作者:</b>
<bean:write name="news" property="author" />
</td>
<td>
<b>时间:</b>
<bean:write name="news" property="addTime" />
</td>
</tr>
<tr>
<td colspan="2"><b>关键字:</b><bean:write name="news" property="keyword"/></td>
</tr>
<tr>
<th colspan="2" align="left">
内容
</th>
</tr>
<tr>
<td colspan="2" align="left">
<bean:write name="news" property="content" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<html:link action="/newsManager?jspId=2"><font size="5">返回</font></html:link>
</td>
</tr>
</tbody>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -