?? left.jsp
字號(hào):
<%@ page language="java" import="java.util.*" %>
<%@page import="java.text.*"
contentType="text/html; charset=gb2312"
buffer="20kb"
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>left</title>
<link href="../include/style.css" rel="stylesheet">
<body>
<br>
<table width="107" border="0" align="center" cellpadding="0" cellspacing="0">
<%
//圖書類別列表
bookType.BtypeDB btypeDB = new bookType.BtypeDB();
Collection booktype = btypeDB.getTypes();
if (booktype != null)
{
if (booktype.size () > 0)
{
for (Iterator iterator = booktype.iterator(); iterator.hasNext(); )
{
bookType.Btype btype = (bookType.Btype) iterator.next ();
%>
<tr>
<td align="center">
<b><a href="Home.jsp?id=<%= btype.getId () %>&btype=<%=btype.getType() %>" target="mainFrame"><%= btype.getType()%></a></b>
</td>
</tr>
<%
}
}
}
%>
</table>
</body>
</html>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -