insertnewstype.jsp
来自「新闻网(news) 带使用说明书 可以用作课程设计」· JSP 代码 · 共 42 行
JSP
42 行
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?