insertnewstype.jsp~2~
来自「jsp技术 基于struts框架的新闻发布系统」· 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> </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> </p>
</div>
<h1> </h1>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?