📄 insertnewstype.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ page import="com.victor.domain.NewsTypeActionForm"%>
<%@ page import="java.util.List"%>
<%@ page import="java.sql.*"%>
<html>
<head>
<title>显示所要添加的新闻类型</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
td{
font-size:9pt;
}
-->
</style></head>
<body>
<table width="568" height="419" border="0" cellpadding="2" cellspacing="1" bgcolor="#052754">
<tr>
<td align="center" valign="top" bgcolor="#FFFFFF">
<p><br>
<br>
<br>
请选择所要添加的新闻类型</p>
<%List type=(List)request.getAttribute("listType");%>
<%for(int i=0;i<type.size();i++){
NewsTypeActionForm newstype=(NewsTypeActionForm)type.get(i);
%>
<table width="208" border="0" cellpadding="2" cellspacing="1" bgcolor="#052754">
<tr>
<td width="202" height="24" bgcolor="#ffffff"><div align="center"><a href="selectStyleAction.do?type=<%=newstype.getTypeName()%>"><%=newstype.getTypeName()%></a></div></td>
</tr>
</table>
<%}%></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -