📄 left.jsp
字号:
<%@ 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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -