⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 watchnews.jsp~6~

📁 新闻网(news) 带使用说明书 可以用作课程设计
💻 JSP~6~
字号:
<%@ 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();%>
<body bgcolor="#ffffc0">
<div align="center">
  <p><%=chinese.str((request.getParameter("newsType"))%></p>
  <p>&nbsp;</p>
  <table width="464" border="3" cellspacing="3" cellpadding="3">
    <tr>
      <td width="113">新闻题目</td>
      <td width="113">新闻详细类别</td>
      <td width="196">操作</td>
    </tr>
<%List list=(List)request.getAttribute("listNew");%>
<%for(int i=0;i<list.size();i++)
{ NewsActionForm newsAction=(NewsActionForm)list.get(i);
%>
    <tr>
      <td><%=newsAction.getNewTitle()%></td>
      <td><%=newsAction.getNewsStyle()%></td>
      <td>查看新闻的详细内容</td>
    </tr>
  </table>
  <p>&nbsp;</p>
</div>
<h1>&nbsp;</h1>
</body>
<%}%>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -