📄 addbook.jsp
字号:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
</head>
<body>
<table border="0" bgcolor="FFDC75" width="100%" align="center" >
<tr>
<td><h3 align="center">添加图书</h3></td>
</tr>
</table>
<c:if test="${not empty requestScope.message}">
<script type="text/javascript">
var msg="${requestScope.message}";
alert(msg);
</script>
<c:remove var="message"/>
</c:if>
<center>
<form action="<c:url value='/addbook.do'/>">
<table border="1" align="center" bordercolor="FFDC75" cellpadding="3" cellspacing="3">
<tr>
<td>书名:</td>
<td><input type="text" name="name"/></td>
</tr>
<tr>
<td>单价:</td>
<td><input type="text" name="price"/></td>
</tr>
</table>
<input type="submit" name="submit" value="提交"/>
<input type="reset" name="reset" value="重置"/>
</form>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -