code081.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>图书首页</title>
</head>
<body>
<a href="pack02.code079">查看所有图书</a>
<%--
create table tb_books (
id int auto_increment not null primary key comment '图书编号',
name varchar(45) not null comment '图书名称',
price double not null comment '价格',
bookCount int not null comment '数量',
author varchar(45) not null comment '作者'
)
--%>
</body>
</html>