📄 insertnewstype.jsp~2~
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -