📄 typenewscontent.jsp~3~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.util.List"%>
<%@ page import="java.sql.*"%>
<%@ page import="com.victor.domain.NewsActionForm"%>
<%@ page import="com.victor.tool.Chinese"%>
<html>
<head>
<title>显示新闻的内容</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
td{
font-size:9pt;
}
.style1 {
color: #FF9900;
font-weight: bold;
}
-->
</style></head>
<%List list=(List)request.getAttribute("content");
%>
<%for(int i=0;i<list.size();i++){
NewsActionForm newsActionForm=(NewsActionForm)list.get(i);
%>
<body>
<table width="568" height="450" border="0" cellpadding="2" cellspacing="1" bgcolor="#052754">
<tr>
<td align="center" valign="top" bgcolor="#FFFFFF">
<p class="style1"><br>
<br>
<br>
显示新闻的内容</p>
<table width="459" height="271" border="0" cellpadding="2" cellspacing="1" bgcolor="#0099cc">
<tr>
<td height="269" valign="top" bgcolor="#FFFFFF"> <%=newsActionForm.getNewContent()%></td>
</tr>
</table> <%}%>
<p>
<a href="selectMainAction.do?newstype=<%=Chinese.str(request.getParameter("newstype")%>"><font style="font-size:9pt">返回</font></a>
</p></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -