insertnewstype.jsp~2~

来自「新闻网(news) 带使用说明书 可以用作课程设计」· JSP~2~ 代码 · 共 33 行

JSP~2~
33
字号
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="com.victor.domain.NewsTypeActionForm"%>
<%@ page import="java.util.List"%>
<%@ page import="java.sql.*"%>
<html>
<head>
<title>显示所要添加的新闻类型</title>

</head>


<body bgcolor="#ffffc0">
<div align="center" >
  <p>显示所要添加的新闻类型
</p>
  <p>&nbsp;</p>
  <%List type=(List)request.getAttribute("listType");%>
<%for(int i=0;i<type.size();i++){
NewsTypeActionForm newstype=(NewsTypeActionForm)type.get(i);
%>
  <table width="200" border="3" cellspacing="3" cellpadding="3">
    <tr>
      <td height="29"><%=newstype.getTypeName()%></td>
	  <input name="" type="hidden" value="">
    </tr>
  </table>
<%}%>  <p>&nbsp;  </p>
</div>
<h1>&nbsp;</h1>
</body>
</html>

⌨️ 快捷键说明

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