📄 watchnews.jsp~4~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.sql.*"%>
<%@ page import="java.util.List"%>
<%@ page import="com.victor.domain.NewsActionForm"%>
<%@ page import="com.victor.tool.Chinese"%>
<html>
<head>
<title>前台显示新闻</title>
</head>
<%Chinese chinese=new Chinese();%>
<%List list=(List)request.getAttribute("listType");%>
<%for(int i=0;i<list.size();i++)
{ NewsActionForm newsAction=(NewsActionForm)list.get(i);
%>
<body bgcolor="#ffffc0">
<div align="center">
<p><%=newsAction.getNewsType();%></p>
<p> </p>
<table width="464" border="3" cellspacing="3" cellpadding="3">
<tr>
<td width="113">新闻题目</td>
<td width="113">新闻详细类别</td>
<td width="196">操作</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>查看新闻的详细内容</td>
</tr>
</table>
<p> </p>
</div>
<h1> </h1>
</body>
<%}%>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -