?? 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 + -